grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / x11 / xbanish.nix
blobb95fac68f1658a1a17e204ed6e69b006800d84ab
1 { config, lib, pkgs, ... }:
3 with lib;
5 let cfg = config.services.xbanish;
7 in {
8   options.services.xbanish = {
10     enable = mkEnableOption "xbanish";
12     arguments = mkOption {
13       description = "Arguments to pass to xbanish command";
14       default = "";
15       example = "-d -i shift";
16       type = types.str;
17     };
18   };
20   config = mkIf cfg.enable {
21     systemd.user.services.xbanish = {
22       description = "xbanish hides the mouse pointer";
23       wantedBy = [ "graphical-session.target" ];
24       partOf = [ "graphical-session.target" ];
25       serviceConfig.ExecStart = ''
26         ${pkgs.xbanish}/bin/xbanish ${cfg.arguments}
27       '';
28       serviceConfig.Restart = "always";
29     };
30   };