mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ 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;
|
|
};
|
|
|
|
package = mkPackageOption 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-session.target" ];
|
|
partOf = [ "graphical-session.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";
|
|
};
|
|
};
|
|
}
|