mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
31 lines
641 B
Nix
31 lines
641 B
Nix
{ 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 = [ "default.target" ];
|
|
serviceConfig.ExecStart = ''
|
|
${pkgs.xbanish}/bin/xbanish ${cfg.arguments}
|
|
'';
|
|
serviceConfig.Restart = "always";
|
|
};
|
|
};
|
|
}
|