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

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