brillo: init at 1.4.8

This commit is contained in:
Alex Rice
2019-11-03 14:42:43 +01:00
committed by Frederik Rietdijk
parent 6928b5c12b
commit 66611546f0
5 changed files with 72 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.hardware.brillo;
in
{
options = {
hardware.brillo = {
enable = mkEnableOption ''
Enable 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 ];
};
}