nixpkgs/nixos/modules/programs/light.nix
Parnell Springmeyer c5f1f9a3b5
More mistake fixes
2017-01-29 05:45:43 -06:00

27 lines
482 B
Nix

{ 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 ];
security.wrappers.light.source = "${pkgs.light.out}/bin/light";
};
}