1
0
Fork 0
puter/profiles/desktop/plasma.nix
2025-07-14 21:23:31 +02:00

20 lines
272 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.desktop;
in
{
config = lib.mkIf cfg.enable {
services = {
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma6.enable = true;
};
};
}