diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 0d1e10e..4843c27 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -3,6 +3,8 @@ imports = [ ./programs/firefox.nix ./programs/git.nix + ./services/desktopmanager.nix + ./services/displaymanager.nix ]; nixpkgs = { diff --git a/nodes/hosts/common/services/desktopmanager.nix b/nodes/hosts/common/services/desktopmanager.nix new file mode 100644 index 0000000..9eeffbf --- /dev/null +++ b/nodes/hosts/common/services/desktopmanager.nix @@ -0,0 +1,3 @@ +{ ... }: { + services.desktopManager.plasma6.enable = true; +} diff --git a/nodes/hosts/common/services/displaymanager.nix b/nodes/hosts/common/services/displaymanager.nix new file mode 100644 index 0000000..22cabb4 --- /dev/null +++ b/nodes/hosts/common/services/displaymanager.nix @@ -0,0 +1,3 @@ +{ ... }: { + services.displayManager.sddm.enable = true; +}