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

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

27 lines
485 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 = 2750;
};
settings = {
general = {
fade = 1;
adjustment-method = "wayland";
};
};
};
};
}