diff options
Diffstat (limited to 'hyprsunset.nix')
| -rw-r--r-- | hyprsunset.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hyprsunset.nix b/hyprsunset.nix new file mode 100644 index 0000000..2994adf --- /dev/null +++ b/hyprsunset.nix @@ -0,0 +1,24 @@ +{ config, pkgs, ... }: + +{ + services.hyprsunset = { + enable = true; + + settings = { + sunrise = { + calendar = "*-*-* 06:00:00"; + requests = [ + "temperature 6500" + "gamma 100" + ]; + }; + sunset = { + calendar = "*-*-* 22:00:00"; + requests = [ + "temperature 3500" + ]; + }; + }; + }; + +} |
