From 4c4c5e54a1748ec67c43bbe543b5c3c42aaa0853 Mon Sep 17 00:00:00 2001 From: tomoron Date: Thu, 16 Jul 2026 18:41:50 +0200 Subject: [PATCH] setup hyprsunset --- homeConfigs/global/wayland/hyprsunset.nix | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 homeConfigs/global/wayland/hyprsunset.nix diff --git a/homeConfigs/global/wayland/hyprsunset.nix b/homeConfigs/global/wayland/hyprsunset.nix new file mode 100644 index 0000000..5f26794 --- /dev/null +++ b/homeConfigs/global/wayland/hyprsunset.nix @@ -0,0 +1,31 @@ +{ ... }: +{ + services.hyprsunset.enable = true; + services.hyprsunset.settings = { + profile = [ + { + time = "9:00"; + identity = true; + gamma = 1; + } + + { + time = "21:30"; + temperature = 5000; + } + { + time = "22:30"; + temperature = 4000; + } + { + time = "23:30"; + temperature = 3000; + } + { + time = "00:30"; + temperature = 2000; + } + + ]; + }; +}