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