plasma again (only works in x11)
This commit is contained in:
parent
b2fdc1f970
commit
caa9c6cfc1
4 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
withNiri = true;
|
withNiri = true;
|
||||||
withGnome = false;
|
withGnome = false;
|
||||||
|
withPlasma = true;
|
||||||
|
|
||||||
withVM = false;
|
withVM = false;
|
||||||
withContainers = true;
|
withContainers = true;
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
./gnome
|
./gnome
|
||||||
./home
|
./home
|
||||||
./niri
|
./niri
|
||||||
|
./plasma
|
||||||
./virt
|
./virt
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
3
modules/plasma/default.nix
Normal file
3
modules/plasma/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ lib, config, ... }: lib.mkIf (config.withPlasma) {
|
||||||
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
}
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
withNiri = mkEnableOption "Enable niri compositor";
|
withNiri = mkEnableOption "Enable niri compositor";
|
||||||
withGnome = mkEnableOption "Enable Gnome";
|
withGnome = mkEnableOption "Enable Gnome";
|
||||||
|
withPlasma = mkEnableOption "Enable KDE Plasma";
|
||||||
|
|
||||||
withVM = mkEnableOption "Enable VM related configuration";
|
withVM = mkEnableOption "Enable VM related configuration";
|
||||||
withContainers = mkEnableOption "Enable container support";
|
withContainers = mkEnableOption "Enable container support";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue