mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
Add x11 service for unclutter
modeled after the redshift service
This commit is contained in:
parent
a869c8351c
commit
887a547ac9
2 changed files with 34 additions and 0 deletions
|
@ -352,6 +352,7 @@
|
||||||
./services/web-servers/varnish/default.nix
|
./services/web-servers/varnish/default.nix
|
||||||
./services/web-servers/winstone.nix
|
./services/web-servers/winstone.nix
|
||||||
./services/web-servers/zope2.nix
|
./services/web-servers/zope2.nix
|
||||||
|
./services/x11/unclutter.nix
|
||||||
./services/x11/desktop-managers/default.nix
|
./services/x11/desktop-managers/default.nix
|
||||||
./services/x11/display-managers/auto.nix
|
./services/x11/display-managers/auto.nix
|
||||||
./services/x11/display-managers/default.nix
|
./services/x11/display-managers/default.nix
|
||||||
|
|
33
nixos/modules/services/x11/unclutter.nix
Normal file
33
nixos/modules/services/x11/unclutter.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ 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.uniq types.string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue