8 lines
133 B
Nix
8 lines
133 B
Nix
{ lib, config, ... }:
|
|
let
|
|
cfg = config.module.brightness;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable { programs.light.enable = true; };
|
|
}
|