nixpkgs/nixos/modules/hardware/brillo.nix

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

22 lines
408 B
Nix
Raw Normal View History

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