mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
36 lines
583 B
Nix
36 lines
583 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.illum;
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.illum = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Enable illum, a daemon for controlling screen brightness with brightness buttons.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.illum = {
|
|
description = "Backlight Adjustment Service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig.ExecStart = "${pkgs.illum}/bin/illum-d";
|
|
};
|
|
|
|
};
|
|
|
|
}
|