From 11667722d74c46d279d33f51729c0d02e9dc8c49 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Wed, 11 Sep 2024 18:56:12 -0500 Subject: [PATCH] cyclone: Do not suspend at login screen --- hosts/cyclone/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/cyclone/configuration.nix b/hosts/cyclone/configuration.nix index 332fc47..eeb089a 100644 --- a/hosts/cyclone/configuration.nix +++ b/hosts/cyclone/configuration.nix @@ -36,7 +36,11 @@ # GNOME! desktopManager.gnome.enable = true; - displayManager.gdm.enable = true; + displayManager.gdm = { + # At the login screen, don't automatically fall asleep. + autoSuspend = false; + enable = true; + }; # Nvidia driver support. videoDrivers = [ "nvidia" ];