summary refs log tree commit diff
path: root/nixos/modules/services/misc/tp-auto-kbbl.nix
diff options
context:
space:
mode:
authorSebastian Sellmeier <mail@sebastian-sellmeier.de>2021-09-30 16:14:49 +0200
committerSebastian Sellmeier <mail@sebastian-sellmeier.de>2021-10-01 13:12:58 +0200
commitf0d1af9bd48aa5071725dc75a76aaa1a0c716fa1 (patch)
tree4808e1893207829ceafd7505945fc07dfc891d4a /nixos/modules/services/misc/tp-auto-kbbl.nix
parentc21ba4f7bb4a3d621eb1d187e6b5e816bb85380c (diff)
downloadnixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar.gz
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar.bz2
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar.lz
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar.xz
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.tar.zst
nixpkgs-f0d1af9bd48aa5071725dc75a76aaa1a0c716fa1.zip
tp-auto-kbbl: init at 0.1.5
Diffstat (limited to 'nixos/modules/services/misc/tp-auto-kbbl.nix')
-rw-r--r--nixos/modules/services/misc/tp-auto-kbbl.nix58
1 files changed, 58 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/tp-auto-kbbl.nix b/nixos/modules/services/misc/tp-auto-kbbl.nix
new file mode 100644
index 00000000000..3ddece88e56
--- /dev/null
+++ b/nixos/modules/services/misc/tp-auto-kbbl.nix
@@ -0,0 +1,58 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let cfg = config.services.tp-auto-kbbl;
+
+in {
+  meta.maintainers = with maintainers; [ sebtm ];
+
+  options = {
+    services.tp-auto-kbbl = {
+      enable = mkEnableOption "Auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux";
+
+      package = mkOption {
+        type = types.package;
+        default = pkgs.tp-auto-kbbl;
+        defaultText = literalExample "pkgs.tp-auto-kbbl";
+        description = "Package providing <command>tp-auto-kbbl</command>.";
+      };
+
+      arguments = mkOption {
+        type = types.listOf types.str;
+        default = [ ];
+        description = ''
+          List of arguments appended to <literal>./tp-auto-kbbl --device [device] [arguments]</literal>
+        '';
+      };
+
+      device = mkOption {
+        type = types.str;
+        default = "/dev/input/event0";
+        description = "Device watched for activities.";
+      };
+
+    };
+  };
+
+  config = mkIf cfg.enable {
+    environment.systemPackages = [ cfg.package ];
+
+    systemd.services.tp-auto-kbbl = {
+      serviceConfig = {
+        ExecStart = concatStringsSep " "
+          ([ "${cfg.package}/bin/tp-auto-kbbl" "--device ${cfg.device}" ] ++ cfg.arguments);
+        Restart = "always";
+        Type = "simple";
+      };
+
+      unitConfig = {
+        Description = "Auto toggle keyboard backlight";
+        Documentation = "https://github.com/saibotd/tp-auto-kbbl";
+        After = [ "dbus.service" ];
+      };
+
+      wantedBy = [ "multi-user.target" ];
+    };
+  };
+}