mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
34 lines
895 B
Nix
34 lines
895 B
Nix
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
let cfg = config.services.unclutter;
|
|
in {
|
|
options = {
|
|
services.unclutter.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
example = true;
|
|
description = "Enable unclutter to hide your mouse cursor when inactive";
|
|
};
|
|
|
|
services.unclutter.arguments = mkOption {
|
|
description = "Arguments to pass to unclutter command";
|
|
default = "-idle 1";
|
|
type = types.str;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.unclutter = {
|
|
description = "unclutter";
|
|
requires = [ "display-manager.service" ];
|
|
after = [ "display-manager.service" ];
|
|
wantedBy = [ "graphical.target" ];
|
|
serviceConfig.ExecStart = ''
|
|
${pkgs.unclutter}/bin/unclutter ${cfg.arguments}
|
|
'';
|
|
environment = { DISPLAY = ":0"; };
|
|
serviceConfig.Restart = "always";
|
|
};
|
|
};
|
|
}
|