dotfiles/home/fhauser/applications/redshift.nix
2022-04-10 16:15:44 +02:00

13 lines
270 B
Nix

{ pkgs, ... }: {
services.redshift = {
enable = true;
package = pkgs.redshift-wlr;
settings.redshift.brightness-night = "0.9";
temperature.day = 6300;
temperature.night = 5500;
latitude = "47.2";
longitude = "8.8";
tray = true;
};
}