diff --git a/home/programs/fish.nix b/home/programs/fish.nix index 79a6b99..412871c 100644 --- a/home/programs/fish.nix +++ b/home/programs/fish.nix @@ -1,7 +1,10 @@ { pkgs, ... }: { home.packages = with pkgs; [ + # general babelfish + + # for extract() gnutar bzip2 bzip3 @@ -9,6 +12,9 @@ unzip pax unrar-free + + # shell goodies + neo ]; programs.fish = { @@ -106,6 +112,14 @@ end ''; }; + + neo = { + wraps = "neo"; + body = # fish + '' + command neo --charset=ascii $argv + ''; + }; }; }; }