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

@@ -113,10 +113,10 @@
"-device"
"virtio-net,netdev=net0"
];
# Keep GUI session commands for when GUI is used
services.xserver.displayManager.sessionCommands = ''
${pkgs.gnome-terminal}/bin/gnome-terminal --full-screen --title="Workshop Terminal" &
'';
# Keep GUI session commands for when GUI is used
services.xserver.displayManager.sessionCommands = ''
${pkgs.gnome-terminal}/bin/gnome-terminal --maximize --title="Workshop Terminal" &
'';
}
)
];