feat: switch desktop environment from XFCE to GNOME

- Change desktopManager from xfce to gnome
- Change displayManager from lightdm to gdm
- Update sessionCommands to use gnome-terminal instead of xfce4-terminal
This commit is contained in:
2025-09-15 14:05:25 +02:00
parent 9b42f00ebe
commit e291457e11
2 changed files with 3 additions and 3 deletions

View File

@@ -1213,7 +1213,7 @@ isoConfig
# GUI Configuration # GUI Configuration
services.xserver = { services.xserver = {
enable = true; enable = true;
desktopManager.xfce.enable = true; desktopManager.gnome.enable = true;
displayManager.lightdm.enable = true; displayManager.gdm.enable = true;
}; };
} }

View File

@@ -120,7 +120,7 @@
}; };
# Keep GUI session commands for when GUI is used # Keep GUI session commands for when GUI is used
services.xserver.displayManager.sessionCommands = '' services.xserver.displayManager.sessionCommands = ''
${pkgs.xfce.xfce4-terminal}/bin/xfce4-terminal --fullscreen --maximize --hide-toolbar --hide-borders --hide-menubar --hide-toolbar --title="Workshop Terminal" & ${pkgs.gnome-terminal}/bin/gnome-terminal --full-screen --title="Workshop Terminal" &
''; '';
} }
) )