aboutsummaryrefslogtreecommitdiff
path: root/users/programs/fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/programs/fish.nix')
-rw-r--r--users/programs/fish.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/users/programs/fish.nix b/users/programs/fish.nix
deleted file mode 100644
index e5a1013..0000000
--- a/users/programs/fish.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ ... }:
-{
- programs.fish = {
- enable = true;
- interactiveShellInit = ''
- set fish_greeting ""
-
- fish_add_path -p ~/.cargo/bin/
-
- # Add utmctl to PATH
- fish_add_path /Applications/UTM.app/Contents/MacOS/
- '';
- shellAbbrs = {
- ncg = "nix-collect-garbage --delete-older-than 7d";
- ndc = "nix develop --command";
- nfc = "nix flake check";
- ngcroot = "ls -al /nix/var/nix/gcroots/auto/";
- nph = "nix profile history --profile /nix/var/nix/profiles/system";
- nsn = "nix search nixpkgs";
- nsv = "nix store verify --all";
-
- g = "git";
- gap = "git add --patch";
- };
- };
-}