From 7a82a291346391c3d8bf96d1e7ad0c19680a2717 Mon Sep 17 00:00:00 2001 From: gwg313 Date: Sun, 13 Jul 2025 08:55:27 -0400 Subject: [PATCH 1/2] fix: add steam controller support Signed-off-by: gwg313 --- common/gui/steam.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/common/gui/steam.nix b/common/gui/steam.nix index b4dd8f6..6c94923 100644 --- a/common/gui/steam.nix +++ b/common/gui/steam.nix @@ -49,6 +49,7 @@ environment.systemPackages = with pkgs; [ protonup + steam-devices-udev-rules scanmem ]; }; From bdede3c7b3a03299875a85a64712b9de7cc4b691 Mon Sep 17 00:00:00 2001 From: gwg313 Date: Sun, 13 Jul 2025 08:56:19 -0400 Subject: [PATCH 2/2] feat: add sleep timers Signed-off-by: gwg313 --- hosts/grymforge/sleep.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/grymforge/sleep.nix b/hosts/grymforge/sleep.nix index ee5267f..6555d01 100644 --- a/hosts/grymforge/sleep.nix +++ b/hosts/grymforge/sleep.nix @@ -15,7 +15,7 @@ description = "Timer to suspend PC at 10PM daily"; wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = "daily 22:00"; + OnCalendar = "*-*-* 22:00:00"; Persistent = true; }; };