Skip to content

Commit

Permalink
xbansih & dlv
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-d committed Apr 6, 2022
1 parent f448d02 commit 23dae79
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions nix-config/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ in
shfmt
shellcheck
unstable.rnix-lsp
unstable.delve
xbanish
];

environment.etc = builtins.foldl' lib.trivial.mergeAttrs {
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 23dae79

Please sign in to comment.