From e034b2085ba45443ed85d27972dfec789e9e9ee4 Mon Sep 17 00:00:00 2001 From: Damocles Date: Sat, 18 Apr 2026 12:48:56 +0200 Subject: [PATCH 1/2] fix systemd rate limit keys in wrong section --- nix/hm-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/hm-module.nix b/nix/hm-module.nix index 821b706..59e729f 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -279,13 +279,13 @@ in Description = "nova-shell Quickshell bar"; PartOf = [ cfg.systemd.target ]; After = [ cfg.systemd.target ]; + StartLimitIntervalSec = 30; + StartLimitBurst = 5; }; Service = { ExecStart = lib.getExe cfg.package; Restart = "always"; RestartSec = 1; - StartLimitIntervalSec = 30; - StartLimitBurst = 5; Slice = "session.slice"; }; Install.WantedBy = [ cfg.systemd.target ]; From c55ddd95b55ed2ec679e065ef3a52ca993201241 Mon Sep 17 00:00:00 2001 From: Damocles Date: Sat, 18 Apr 2026 12:59:12 +0200 Subject: [PATCH 2/2] halve lock screen wave animation duration to 3s --- shell/applets/HexWaveBackground.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/applets/HexWaveBackground.qml b/shell/applets/HexWaveBackground.qml index 9368f9f..7d61a58 100644 --- a/shell/applets/HexWaveBackground.qml +++ b/shell/applets/HexWaveBackground.qml @@ -43,7 +43,7 @@ Item { NumberAnimation { from: -fx._waveMargin to: fx.width + fx._waveMargin - duration: 6000 + duration: 3000 easing.type: Easing.InOutSine } PauseAnimation {