nixpkgs/nixos/modules/programs/light.nix

27 lines
482 B
Nix
Raw Normal View History

2014-11-10 02:32:11 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.light;
in
{
options = {
programs.light = {
enable = mkOption {
default = false;
type = types.bool;
description = ''
Whether to install Light backlight control with setuid wrapper.
'';
};
};
};
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.light ];
2017-01-29 11:45:43 +00:00
security.wrappers.light.source = "${pkgs.light.out}/bin/light";
2014-11-10 02:32:11 +00:00
};
}