1
0
Fork 0
puter/profiles/desktop/plasma.nix

26 lines
347 B
Nix
Raw Normal View History

2025-07-14 21:23:00 +02:00
{
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;
};
};
}