b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
31 lines
720 B
Nix
31 lines
720 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.xbanish;
|
|
|
|
in {
|
|
options.services.xbanish = {
|
|
|
|
enable = mkEnableOption (lib.mdDoc "xbanish");
|
|
|
|
arguments = mkOption {
|
|
description = lib.mdDoc "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" ];
|
|
serviceConfig.ExecStart = ''
|
|
${pkgs.xbanish}/bin/xbanish ${cfg.arguments}
|
|
'';
|
|
serviceConfig.Restart = "always";
|
|
};
|
|
};
|
|
}
|