nix/module/Brightness.nix

14 lines
220 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
lib,
config,
...
}: let
2024-11-07 12:12:53 +03:00
cfg = config.module.brightness;
2024-11-04 04:37:29 +03:00
in {
2024-11-07 12:12:53 +03:00
options.module.brightness.enable = lib.mkEnableOption "the brightness control.";
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
config = lib.mkIf cfg.enable {
programs.light.enable = true;
};
2024-03-28 12:01:06 +03:00
}