summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authordje4321 <dje4321@gmail.com>2018-06-16 17:15:42 -0500
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-06-16 18:15:42 -0400
commit1b7ce4c6d5f5f3882326b71f89803af5bf1f5053 (patch)
treead948a3942dc1a6d0671fb2cc04a9358e7041b6b /nixos/modules/hardware
parentabdbb38d03be7854f39d57e28e4fdfcac066ff1c (diff)
downloadnixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar.gz
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar.bz2
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar.lz
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar.xz
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.tar.zst
nixlib-1b7ce4c6d5f5f3882326b71f89803af5bf1f5053.zip
brightnessctl: init at 0.3.2 (#42102)
* brightnessctl: init at 0.3.2

* Revised PR
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/brightnessctl.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixos/modules/hardware/brightnessctl.nix b/nixos/modules/hardware/brightnessctl.nix
new file mode 100644
index 000000000000..341e4b791c23
--- /dev/null
+++ b/nixos/modules/hardware/brightnessctl.nix
@@ -0,0 +1,30 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+let
+  cfg = config.hardware.brightnessctl;
+in
+{
+
+  options = {
+
+    hardware.brightnessctl = {
+
+      enable = mkOption {
+        default = false;
+        type = types.bool;
+        description = ''
+          Enable brightnessctl in userspace.
+          This will allow brightness control from users in the video group.
+        '';
+
+      };
+    };
+  };
+
+
+  config = mkIf cfg.enable {
+    services.udev.packages = with pkgs; [ brightnessctl ];
+  };
+
+}