nixpkgs/nixos/modules/services/x11/xbanish.nix

32 lines
698 B
Nix
Raw Normal View History

2016-04-20 06:24:53 +00:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.xbanish;
in {
options.services.xbanish = {
enable = mkEnableOption "xbanish";
arguments = mkOption {
description = "Arguments to pass to xbanish command";
default = "";
example = "-d -i shift";
type = types.str;
};
};
config = mkIf cfg.enable {
systemd.user.services.xbanish = {
description = "xbanish hides the mouse pointer";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
2016-04-20 06:24:53 +00:00
serviceConfig.ExecStart = ''
${pkgs.xbanish}/bin/xbanish ${cfg.arguments}
'';
serviceConfig.Restart = "always";
};
};
}