diff --git a/home/plasma/nixos.nix b/home/plasma/nixos.nix index 8eba21f7..7616fd7c 100644 --- a/home/plasma/nixos.nix +++ b/home/plasma/nixos.nix @@ -7,6 +7,7 @@ in { options.home.plasma = { enable = mkEnableOption "plasma desktop and configuration"; + specialise = mkEnableOption "enable plasma in a specialisation"; extraConfig = mkOption { type = with types; anything; default = { }; @@ -36,5 +37,9 @@ in { home = mkIf cfg.enable { catppuccin.enable = mkForce false; }; + + specialisation.plasma = mkIf cfg.specialise { + configuration.home.plasma.enable = true; + }; }; }