summary refs log blame commit diff
path: root/nixos/modules/hardware/brillo.nix
blob: e970c94809989665d55fcdc7f2444ff0788cb41e (plain) (tree)





















                                                                         
{ 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 ];
  };
}