ooknet/home/modules/desktop/wayland/utility/gammastep/default.nix

20 lines
376 B
Nix

{ lib, config, ... }:
let
cfg = config.ooknet.desktop.wayland.utility.gammastep;
in
{
config = lib.mkIf cfg.enable {
services.gammastep = {
enable = true;
enableVerboseLogging = true;
provider = "geoclue2";
temperature = {
day = 6000;
night = 4000;
};
settings.general.adjustment-method = "wayland";
};
};
}