[NixOS] Add files that allow enabling of plasma/gnome

This commit is contained in:
2023-11-17 15:20:44 -07:00
parent d376da4ca4
commit 2abde807aa
5 changed files with 22 additions and 11 deletions

7
nixos/plasma.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, makeEnable, ... }:
makeEnable config "modules.plasma" true {
services.xserver = {
desktopManager.plasma5.enable = true;
displayManager.sddm.enable = true;
};
}