From 23dae799af1cac3f9521cc688a44d00fc8d3a28c Mon Sep 17 00:00:00 2001 From: Owen Diehl Date: Wed, 6 Apr 2022 13:05:50 -0400 Subject: [PATCH] xbansih & dlv --- nix-config/configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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.