25 lines
470 B
Nix
25 lines
470 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.hardware.acpilight;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
hardware.acpilight = {
|
||
|
enable = mkOption {
|
||
|
default = false;
|
||
|
type = types.bool;
|
||
|
description = ''
|
||
|
Enable acpilight.
|
||
|
This will allow brightness control via xbacklight from users in the video group
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.udev.packages = with pkgs; [ acpilight ];
|
||
|
};
|
||
|
}
|