1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-07-14 21:23:00 +02:00
parent 79792e5a76
commit dd9ad1ca6f
No known key found for this signature in database
4 changed files with 30 additions and 120 deletions

View file

@ -0,0 +1,25 @@
{
config,
lib,
inputs,
...
}:
let
cfg = config.profiles.desktop;
in
{
imports = [
inputs.nixos-cosmic.nixosModules.default
];
config = lib.mkIf cfg.enable {
services = {
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma6.enable = true;
};
};
}