nixos-conf/personal/programs/redshift.nix

21 lines
294 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ ... }:
{
services.redshift = {
executable = "/bin/redshift-gtk";
enable = true;
temperature = {
night = 2800;
day = 6500;
};
brightness = {
night = "0.5";
day = "1";
};
};
location = {
latitude = 60.17;
longitude = 24.94;
};
}