further improvements

This commit is contained in:
christoph.hollizeck 2024-03-26 19:20:50 +01:00
parent 88f574eb38
commit 588f60129f
7 changed files with 41 additions and 31 deletions

View file

@ -10,5 +10,15 @@ in
enable = mkBoolOpt false "Whether to enable a graphical interface";
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma5.enable = true;
};
};
}