Files
nixos-config/modules/home-manager/hyprsunset.nix
2025-11-29 22:51:38 +01:00

24 lines
391 B
Nix

{ config, ... }:
{
services = {
hyprsunset = {
enable = true;
settings = {
max-gamma = 150;
profile = [
{
time = "7:30";
identity = true;
}
{
time = "23:00";
temperature = config.var.hyprsunset.temperature;
gamma = 0.8;
}
];
};
};
};
}