nichts/nyx/homes/notashelf/services/wayland/gammastep/default.nix

16 lines
212 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
inherit (osConfig) meta;
in {
config = mkIf meta.isWayland {
services.gammastep = {
enable = true;
provider = "geoclue2";
};
};
}