nichts/nyx/homes/notashelf/services/wayland/gammastep/default.nix
2024-04-09 23:11:33 +02:00

15 lines
212 B
Nix

{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
inherit (osConfig) meta;
in {
config = mkIf meta.isWayland {
services.gammastep = {
enable = true;
provider = "geoclue2";
};
};
}