plasma again (only works in x11)

This commit is contained in:
twoneis 2024-07-01 20:36:08 +02:00
parent b2fdc1f970
commit caa9c6cfc1
4 changed files with 6 additions and 0 deletions

View file

@ -6,6 +6,7 @@
withNiri = true; withNiri = true;
withGnome = false; withGnome = false;
withPlasma = true;
withVM = false; withVM = false;
withContainers = true; withContainers = true;

View file

@ -7,6 +7,7 @@
./gnome ./gnome
./home ./home
./niri ./niri
./plasma
./virt ./virt
]; ];

View file

@ -0,0 +1,3 @@
{ lib, config, ... }: lib.mkIf (config.withPlasma) {
services.desktopManager.plasma6.enable = true;
}

View file

@ -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";