feat(plasma): add specialise option

This commit is contained in:
514fpv 2024-05-14 10:20:46 +08:00
parent deb956e8bc
commit 0e27466753
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -7,6 +7,7 @@
in { in {
options.home.plasma = { options.home.plasma = {
enable = mkEnableOption "plasma desktop and configuration"; enable = mkEnableOption "plasma desktop and configuration";
specialise = mkEnableOption "enable plasma in a specialisation";
extraConfig = mkOption { extraConfig = mkOption {
type = with types; anything; type = with types; anything;
default = { }; default = { };
@ -36,5 +37,9 @@ in {
home = mkIf cfg.enable { home = mkIf cfg.enable {
catppuccin.enable = mkForce false; catppuccin.enable = mkForce false;
}; };
specialisation.plasma = mkIf cfg.specialise {
configuration.home.plasma.enable = true;
};
}; };
} }