summaryrefslogtreecommitdiffstats
path: root/hyprsunset.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-21 18:52:13 -0400
committerAndrew <admonty1@protonmail.com>2025-08-21 18:52:13 -0400
commit5a35b5ebdb2d4bac04e837064f115cb79459dcb8 (patch)
treea047d80eaa92dc87f306de3ccd25530046d230d1 /hyprsunset.nix
parentadd OBS-studio (diff)
downloadnixos-5a35b5ebdb2d4bac04e837064f115cb79459dcb8.tar.gz
nixos-5a35b5ebdb2d4bac04e837064f115cb79459dcb8.tar.bz2
nixos-5a35b5ebdb2d4bac04e837064f115cb79459dcb8.zip
hyprsunset test
Diffstat (limited to 'hyprsunset.nix')
-rw-r--r--hyprsunset.nix24
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"
+ ];
+ };
+ };
+ };
+
+}