mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
24 lines
530 B
Nix
24 lines
530 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.hardware.acpilight;
|
|
in
|
|
{
|
|
options = {
|
|
hardware.acpilight = {
|
|
enable = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
description = ''
|
|
Enable acpilight.
|
|
This will allow brightness control via xbacklight from users in the video group
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ acpilight ];
|
|
services.udev.packages = with pkgs; [ acpilight ];
|
|
};
|
|
}
|