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

24 lines
391 B
Nix

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