feat: start GNOME terminal maximized on login

- Change from --full-screen to --maximize for better usability
- Maintains workshop terminal title
- Provides maximized terminal window like previous XFCE setup
This commit is contained in:
2025-09-15 14:25:47 +02:00
parent d92654da99
commit fd40d7edf9

View File

@@ -115,7 +115,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.gnome-terminal}/bin/gnome-terminal --full-screen --title="Workshop Terminal" & ${pkgs.gnome-terminal}/bin/gnome-terminal --maximize --title="Workshop Terminal" &
''; '';
} }
) )