From 0e27466753f38c4eb20611373e6a2e2be4cbace9 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Tue, 14 May 2024 10:20:46 +0800 Subject: [PATCH] feat(plasma): add specialise option --- home/plasma/nixos.nix | 5 +++++ 1 file changed, 5 insertions(+) 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; + }; }; }