nixos-config/hosts/dell-5590/home-manager/redshift.nix

21 lines
336 B
Nix
Raw Normal View History

2022-04-11 16:38:24 +00:00
{ config, pkgs, callPackage, ... }:
{
# Does not work well imho.
services.redshift = {
enable = true;
temperature = {
day = 5500;
night = 4500;
};
2022-08-05 12:16:06 +00:00
settings.redshift.brightness = {
2022-04-11 16:38:24 +00:00
day = "1.0";
night = "0.9";
};
latitude = "45.7715988159";
longitude = "-1.13960003853";
};
}