diff options
Diffstat (limited to 'home-modules/desktop/hyprland.nix')
| -rw-r--r-- | home-modules/desktop/hyprland.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/home-modules/desktop/hyprland.nix b/home-modules/desktop/hyprland.nix index 1fdc801..9703e0d 100644 --- a/home-modules/desktop/hyprland.nix +++ b/home-modules/desktop/hyprland.nix @@ -15,6 +15,7 @@ with lib; networkmanagerapplet wl-clipboard brightnessctl + hyprsunset ]; services.hyprpolkitagent.enable = true; @@ -299,6 +300,30 @@ with lib; ]; }; }; + services.hyprsunset = { + enable = true; + settings = { + max-gamma = 140; + profile = [ + { # Morning + time = "07:00"; + identity = true; + # temperature = 6500; + # gamme = 1; + } + { # Evening + time = "19:00"; + temperature = 4000; + gamma = 0.6; + } + { # Night + time = "22:00"; + temperature = 3000; + gamma = 0.4; + } + ]; + }; + }; services.hypridle.enable = true; services.hypridle.settings = { |
