home | add config for redshift

This commit is contained in:
Don Harper 2023-11-07 07:51:44 -06:00
parent cb6afa3191
commit c39710a9f1
2 changed files with 23 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./fuzzel.nix
./kde.nix
./mpv.nix
./redshift.nix
./sway.nix
./terminals.nix
];

22
home/redshift.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
services.redshift = {
enable = true;
latitude = "29.74";
longitude = "-95.77";
provider = "manual";
settings = {
redshift = {
tray = true;
adjustment-method = "vidmode";
brightness-day = "1.0";
brightness-night = "0.7";
# This *should work*
#temperature = {
#day = 6500;
#night = 3500;
#};
};
};
};
}