dotfiles/modules/home/services/gammastep/default.nix

22 lines
349 B
Nix
Raw Normal View History

{
config,
lib,
namespace,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.services.gammastep;
in {
options.${namespace}.services.gammastep = {
enable = mkEnableOption "gammastep";
};
config = mkIf cfg.enable {
services.gammastep = {
enable = true;
provider = "geoclue2";
};
};
}