Remove the deUtils namespace

This commit is contained in:
SebastianStork 2025-05-28 10:30:35 +02:00
parent f0df314f21
commit 2ff87c8404
15 changed files with 33 additions and 33 deletions

View file

@ -1,25 +0,0 @@
{ config, lib, ... }@moduleArgs:
{
options.custom.deUtils.services.gammastep.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.deUtils.services.gammastep.enable {
assertions = [
{
assertion =
let
inherit (moduleArgs.osConfig.services) geoclue2;
in
geoclue2.enable or true && geoclue2.appConfig.gammastep.isAllowed or true;
message = "gammastep requires geoclue";
}
];
services.gammastep = {
enable = true;
provider = "geoclue2";
settings.general.adjustment-method = "wayland";
temperature.night = 2700;
};
};
}