nixos/modules/desktop/gammastep.nix
Pablo Ovelleiro Corral 2103ab9f6e
Update NixOS wiki link
2024-06-27 20:37:34 +02:00

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
};
};
};
}