reduce xorg defaults from global to per-machine

This commit is contained in:
Sean Buckley 2024-05-07 22:13:22 -04:00
parent 3984e050ff
commit da2abb03d6
2 changed files with 2 additions and 1 deletions

View file

@ -19,6 +19,8 @@ in
"/var/log/journal" "/var/log/journal"
]; ];
services.xserver.displayManager.defaultSession = "gnome-xorg";
services.openssh.hostKeys = [ services.openssh.hostKeys = [
{ type = "ed25519"; path = "${persist}/ssh_host_ed25519_key"; } { type = "ed25519"; path = "${persist}/ssh_host_ed25519_key"; }
]; ];

View file

@ -13,7 +13,6 @@ in
displayManager.gdm.enable = true; displayManager.gdm.enable = true;
displayManager.gdm.autoSuspend = false; displayManager.gdm.autoSuspend = false;
desktopManager.gnome.enable = true; desktopManager.gnome.enable = true;
displayManager.defaultSession = "gnome-xorg";
}; };
services.colord.enable = false; services.colord.enable = false;