NiksOS/system/desktop/plasma6.nix
Jurn Wubben a46e31e783 Neovim added leap plugin
Rewritten and moved portable module
Updated background
Disabled garnix substitutor
Small changes to greetd
2025-06-23 20:13:22 +02:00

28 lines
628 B
Nix

{
lib,
pkgs,
config,
...
}: let
cfg = config.niksos.desktop.enable && config.niksos.desktop.kde;
in {
specialisation.de.configuration = lib.mkIf cfg {
niksos.desktop.hyprland = lib.mkForce false;
services = {
greetd = let
session.command = "${pkgs.kdePackages.plasma-workspace}/bin/startplasma-wayland";
in {
enable = true;
settings = {
terminal.vt = 1;
default_session = session;
initial_session = session;
};
};
desktopManager.plasma6.enable = true;
};
home-manager.users.jsw.stylix.autoEnable = false;
};
}