19 lines
525 B
Nix
19 lines
525 B
Nix
{home-manager, ...}: {
|
|
# Gammestep automatically adjusts the screen's colour temperature. It's
|
|
# basically redshift for Wayland.
|
|
# https://gitlab.com/chinstrap/gammastep
|
|
# https://wiki.nixos.org/wiki/Gammastep
|
|
|
|
home-manager.users.caspervk = {
|
|
services.gammastep = {
|
|
enable = true;
|
|
dawnTime = "06:00";
|
|
duskTime = "22:00";
|
|
temperature = {
|
|
day = 6500; # default upstream but not in nixpkgs, neutral
|
|
night = 4500; # default upstream but not in nixpkgs
|
|
};
|
|
};
|
|
};
|
|
}
|