diff --git a/nix-config/configuration.nix b/nix-config/configuration.nix index 14cf84f..6bc3ac6 100644 --- a/nix-config/configuration.nix +++ b/nix-config/configuration.nix @@ -205,6 +205,8 @@ in shfmt shellcheck unstable.rnix-lsp + unstable.delve + xbanish ]; environment.etc = builtins.foldl' lib.trivial.mergeAttrs { @@ -245,6 +247,16 @@ in pinentryFlavor = "tty"; }; + systemd.user.services."xbanish" = { + enable = true; + description = "Hide cursor when typing"; + wantedBy = [ "default.target" ]; + serviceConfig.Type = "forking"; + serviceConfig.Restart = "on-failure"; + serviceConfig.RestartSec = 2; + serviceConfig.ExecStart = "${pkgs.xbanish}/bin/xbanish"; + }; + # List services that you want to enable: # Enable the OpenSSH daemon.