summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/x11/unclutter-xfixes.nix
diff options
context:
space:
mode:
authorErik Rybakken <erik.rybakken@math.ntnu.no>2016-09-10 15:24:57 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-11-29 14:25:32 +0100
commit2f0cc0d3f055d64ca3f4c8664c12e8f02a833d0d (patch)
treee5e0fc63a3a6bd4a90f3be03f922dfd3e48be6be /nixos/modules/services/x11/unclutter-xfixes.nix
parent28fa4cfe56b8b4c99cb197b5318104673f99938e (diff)
unclutter-xfixes service: init
Closes #18398
Diffstat (limited to 'nixos/modules/services/x11/unclutter-xfixes.nix')
-rw-r--r--nixos/modules/services/x11/unclutter-xfixes.nix58
1 files changed, 58 insertions, 0 deletions
diff --git a/nixos/modules/services/x11/unclutter-xfixes.nix b/nixos/modules/services/x11/unclutter-xfixes.nix
new file mode 100644
index 000000000000..bd02c5ed9895
--- /dev/null
+++ b/nixos/modules/services/x11/unclutter-xfixes.nix
@@ -0,0 +1,58 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let cfg = config.services.unclutter-xfixes;
+
+in {
+ options.services.unclutter-xfixes = {
+
+ enable = mkOption {
+ description = "Enable unclutter-xfixes to hide your mouse cursor when inactive.";
+ type = types.bool;
+ default = false;
+ example = true;
+ };
+
+ package = mkOption {
+ description = "unclutter-xfixes derivation to use.";
+ type = types.package;
+ default = pkgs.unclutter-xfixes;
+ defaultText = "pkgs.unclutter-xfixes";
+ };
+
+ timeout = mkOption {
+ description = "Number of seconds before the cursor is marked inactive.";
+ type = types.int;
+ default = 1;
+ };
+
+ threshold = mkOption {
+ description = "Minimum number of pixels considered cursor movement.";
+ type = types.int;
+ default = 1;
+ };
+
+ extraOptions = mkOption {
+ description = "More arguments to pass to the unclutter-xfixes command.";
+ type = types.listOf types.str;
+ default = [];
+ example = [ "exclude-root" "ignore-scrolling" "fork" ];
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.user.services.unclutter-xfixes = {
+ description = "unclutter-xfixes";
+ wantedBy = [ "graphical.target" ];
+ serviceConfig.ExecStart = ''
+ ${cfg.package}/bin/unclutter \
+ --timeout ${toString cfg.timeout} \
+ --jitter ${toString (cfg.threshold - 1)} \
+ ${concatMapStrings (x: " --"+x) cfg.extraOptions} \
+ '';
+ serviceConfig.RestartSec = 3;
+ serviceConfig.Restart = "always";
+ };
+ };
+}