nixos/modules/plasma/default.nix

21 lines
353 B
Nix
Raw Normal View History

2025-03-29 21:03:07 -04:00
{
lib,
config,
2025-03-30 00:25:15 -04:00
pkgs,
inputs,
2025-03-29 21:03:07 -04:00
...
}: let
cfg = config.lily.plasma;
in {
options.lily.plasma.enable = lib.mkEnableOption "activate plasma";
config = lib.mkIf cfg.enable {
services = {
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma6.enable = true;
};
};
}