mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
21 lines
420 B
Nix
21 lines
420 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.hardware.brillo;
|
|
in
|
|
{
|
|
options = {
|
|
hardware.brillo = {
|
|
enable = mkEnableOption (lib.mdDoc ''
|
|
brillo in userspace.
|
|
This will allow brightness control from users in the video group
|
|
'');
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.udev.packages = [ pkgs.brillo ];
|
|
environment.systemPackages = [ pkgs.brillo ];
|
|
};
|
|
}
|