switch lillie to gnome

This commit is contained in:
willifan 2025-07-14 16:50:34 +02:00
parent 19aceb4879
commit 18075d1d78
6 changed files with 23 additions and 12 deletions

View file

@ -0,0 +1,11 @@
{ lib, config, ... }:
{
services.desktopManager = {
plasma6 = lib.mkIf config.desktop.wm.plasma6.enable {
enable = true;
};
gnome = lib.mkIf config.desktop.wm.gnome.enable {
enable = true;
};
};
}