dotfiles/modules/home/graphical/wayland/gammastep.nix
eriedaberrie 3446218455 Initial commit
Note: not the actual initial commit.

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-11-13 02:02:37 -08:00

29 lines
547 B
Nix

{ config, lib, ... }:
let
cfg = config.my.graphical.wayland.gammastep;
in {
options.my.graphical.wayland.gammastep = {
enable = lib.mkEnableOption null;
};
config = lib.mkIf cfg.enable {
services.gammastep = {
enable = true;
provider = "geoclue2";
temperature = {
day = 6500;
night = 3000;
};
dawnTime = "7:30-8:00";
duskTime = "22:00-23:00";
settings = {
general = {
fade = 1;
adjustment-method = "wayland";
};
};
};
};
}