infra/nix/home-manager/programs/redshift.nix

23 lines
404 B
Nix

{
pkgs,
config,
...
}: let
passwords = import ../../variables/passwords.crypt.nix;
in {
services.gammastep = {
enable = true;
inherit (passwords.location.stefan) longitude latitude;
temperature = {
day = 6700;
night = 3000;
};
tray = true;
settings = {
gammastep = {
brightness-day = 1.0;
brightness-night = 0.5;
};
};
};
}