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

@ -0,0 +1,13 @@
{
config,
pkgs,
lib,
...
}:
{
options.custom.programs.brightnessctl.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.brightnessctl.enable {
home.packages = [ pkgs.brightnessctl ];
};
}