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;
|
||||
withGnome = false;
|
||||
withPlasma = true;
|
||||
|
||||
withVM = false;
|
||||
withContainers = true;
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
./gnome
|
||||
./home
|
||||
./niri
|
||||
./plasma
|
||||
./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";
|
||||
withGnome = mkEnableOption "Enable Gnome";
|
||||
withPlasma = mkEnableOption "Enable KDE Plasma";
|
||||
|
||||
withVM = mkEnableOption "Enable VM related configuration";
|
||||
withContainers = mkEnableOption "Enable container support";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue