From 49a341d6b32eb74061654520cf7c6e46956a587a Mon Sep 17 00:00:00 2001 From: tux Date: Thu, 10 Sep 2026 15:36:02 +0530 Subject: [PATCH] feat(serpantinum): enable idle configuration --- modules/hm/desktop/serpantinum.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/modules/hm/desktop/serpantinum.nix b/modules/hm/desktop/serpantinum.nix index 3ecd4ef..4c56d9a 100644 --- a/modules/hm/desktop/serpantinum.nix +++ b/modules/hm/desktop/serpantinum.nix @@ -1,5 +1,4 @@ -{ inputs, ... }: { - +{inputs, ...}: { flake.modules.nixos.desktop = { imports = [ inputs.serpantinum.nixosModules.default @@ -8,12 +7,12 @@ programs.serpantinum.enable = true; }; - flake.modules.homeManager.desktop = { pkgs, ... }: { + flake.modules.homeManager.desktop = {pkgs, ...}: { imports = [ inputs.serpantinum.homeManagerModules.default ]; - home.packages = with pkgs; [ pulseaudioFull ]; + home.packages = with pkgs; [pulseaudioFull]; programs.serpantinum = { enable = true; @@ -40,7 +39,7 @@ "sysmon" "wifi" ]; - center = [ "vis" ]; + center = ["vis"]; right = [ "media" "vol" @@ -62,6 +61,11 @@ position = "top right"; sound = true; }; + + idle = { + enabled = true; + manualInhibit = true; + }; }; }; };