Make gammastep and theming part of DE configuration

This commit is contained in:
SebastianStork 2024-08-14 15:32:51 +02:00
parent aceeeef689
commit 8cc1a65fd8
9 changed files with 12 additions and 12 deletions

View file

@ -1,12 +0,0 @@
{ config, lib, ... }:
{
options.myConfig.night-light.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.night-light.enable {
services.gammastep = {
enable = true;
provider = "geoclue2";
settings.general.adjustment-method = "wayland";
};
};
}