diff options
author | William Carroll <wpcarro@gmail.com> | 2022-01-06T22·07-0800 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-01-08T06·23+0000 |
commit | a21da10b1650d22cb546e286b14a921b6bce0846 (patch) | |
tree | 9a1fa5ccd341179caa6650b89297c4de576de36a /users | |
parent | afa1f2c18ba4073e318e28527ce97cc799da679a (diff) |
feat(wpcarro/clitools): Add simple_vim to my clitools r/3569
I'm considering `alias vim=simple_vim`, but I'm not sure yet. Change-Id: Ia6d625d4925939f4e5c6088a8b4067870c1a2522 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4819 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users')
-rw-r--r-- | users/wpcarro/common.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/users/wpcarro/common.nix b/users/wpcarro/common.nix index ca72f649cdf7..1ccc098c7831 100644 --- a/users/wpcarro/common.nix +++ b/users/wpcarro/common.nix @@ -1,6 +1,8 @@ -{ pkgs, ... }: +{ depot, pkgs, ... }: -{ +let + inherit (depot.users) wpcarro; +in { programs = { fish.enable = true; @@ -54,6 +56,7 @@ tree vim whois + wpcarro.tools.simple_vim xclip ]; } |