super duper changes :D

This commit is contained in:
2026-02-22 20:02:46 +01:00
parent 72cdbe93ff
commit ffd09e5046
10 changed files with 665 additions and 19 deletions

View File

@@ -0,0 +1,33 @@
{
isNixOS,
pkgs,
...
}:
{
services.hyprsunset = {
enable = true;
package =
if isNixOS then
pkgs.hyprsunset
else
(pkgs.writeShellScriptBin "hyprsunset" "exec /usr/bin/hyprsunset \"$@\"");
settings = {
max-gamma = 150;
profile = [
{
time = "7:00";
identity = true;
}
{
time = "21:00";
identity = false;
temperature = 4500;
gamma = 0.8;
}
];
};
};
}