1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/nixos/modules/hardware/brillo.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
405 B
Nix
Raw Permalink Normal View History

2019-04-14 10:53:43 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.hardware.brillo;
in
{
options = {
hardware.brillo = {
enable = lib.mkEnableOption ''
brillo in userspace.
This will allow brightness control from users in the video group
2019-04-14 10:53:43 +01:00
'';
};
};
config = lib.mkIf cfg.enable {
2019-04-14 10:53:43 +01:00
services.udev.packages = [ pkgs.brillo ];
environment.systemPackages = [ pkgs.brillo ];
};
}