diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-06 21:07:19 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-06 21:07:19 +0100 |
| commit | 4ff71d189c210a0c26e839ecd19b12749126746d (patch) | |
| tree | 7ca95320482c319df5c3fefbacf30f788dd30ee9 /home-modules | |
| parent | dca35cc9f01b47974783a2ad2f40382ceb364a09 (diff) | |
Add hyprsunset to hyprland config
Diffstat (limited to 'home-modules')
| -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 = { |
