diff options
author | Alan Pearce | 2023-09-19 10:34:12 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-19 10:57:32 +0200 |
commit | f7741426ff98976914016ad77ad865d985296fc4 (patch) | |
tree | bfe54f1a9bf2e8508884141ad1ab643a6beb6cfc | |
parent | b25912a06fb9466596f9d33817865c40806df1f6 (diff) | |
download | nixfiles-f7741426ff98976914016ad77ad865d985296fc4.tar.lz nixfiles-f7741426ff98976914016ad77ad865d985296fc4.tar.zst nixfiles-f7741426ff98976914016ad77ad865d985296fc4.zip |
shell: switch search to `bfs`
-rw-r--r-- | user/settings/base.nix | 2 | ||||
-rw-r--r-- | user/settings/shell.nix | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/user/settings/base.nix b/user/settings/base.nix index 10544d67..f2c609c7 100644 --- a/user/settings/base.nix +++ b/user/settings/base.nix @@ -84,7 +84,7 @@ home.packages = with pkgs; [ pv - fd + bfs sd knot-dns dateutils diff --git a/user/settings/shell.nix b/user/settings/shell.nix index 1c267713..b1c14225 100644 --- a/user/settings/shell.nix +++ b/user/settings/shell.nix @@ -31,6 +31,9 @@ in cg = "cd $(git root)"; cdg = "cd $(git root)"; + fd = "bfs -nohidden"; + fs = "bfs -nohidden"; + http = "xh"; https = "xh --default-scheme https"; xhs = "xh --default-scheme https"; |