feat(plasma): add specialise option
This commit is contained in:
parent
deb956e8bc
commit
0e27466753
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue