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;
withGnome = false;
withPlasma = true;
withVM = false;
withContainers = true;

View file

@ -7,6 +7,7 @@
./gnome
./home
./niri
./plasma
./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";
withGnome = mkEnableOption "Enable Gnome";
withPlasma = mkEnableOption "Enable KDE Plasma";
withVM = mkEnableOption "Enable VM related configuration";
withContainers = mkEnableOption "Enable container support";