From 46a112a8e111c67527adafa837e56f0823f44ae2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Apr 2026 18:17:52 +0000 Subject: [PATCH] feat: disable GNOME auto-suspend, screen dim, and screen lock defaults Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/0ef47453-73af-4c18-a63f-d4bcccce2f37 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- modules/core/sovran_systemsos-desktop.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/modules/core/sovran_systemsos-desktop.nix b/modules/core/sovran_systemsos-desktop.nix index aa1fcef..086b541 100644 --- a/modules/core/sovran_systemsos-desktop.nix +++ b/modules/core/sovran_systemsos-desktop.nix @@ -99,6 +99,25 @@ in icon-theme = "Papirus-Dark"; }; + "org/gnome/settings-daemon/plugins/power" = { + sleep-inactive-ac-type = "nothing"; + sleep-inactive-ac-timeout = lib.gvariant.mkInt32 0; + sleep-inactive-battery-type = "nothing"; + sleep-inactive-battery-timeout = lib.gvariant.mkInt32 0; + idle-dim = false; + ambient-enabled = false; + power-button-action = "nothing"; + }; + + "org/gnome/desktop/session" = { + idle-delay = lib.gvariant.mkUint32 0; + }; + + "org/gnome/desktop/screensaver" = { + lock-enabled = false; + idle-activation-enabled = false; + }; + "org/gnome/evolution-data-server" = { migrated = true; };