diff --git a/nix/homeModules/common/fish/functions/activate-nix-env.fish b/nix/homeModules/common/fish/functions/activate-nix-env.fish deleted file mode 100644 index 2d494481..00000000 --- a/nix/homeModules/common/fish/functions/activate-nix-env.fish +++ /dev/null @@ -1,11 +0,0 @@ -function activate-nix-env \ - --description "Add a nix environment into path" - ### Arguments: - if [ (count $argv) -ne 1 ] - echo "Must provide exactly one argument, the path to be added" - return 1 - end - set env_name $argv[1] - - fish_add_path --global "$HOME/.environments/$argv[1]/bin" -end diff --git a/nix/homeModules/common/fish/functions/deactivate-nix-env.fish b/nix/homeModules/common/fish/functions/deactivate-nix-env.fish deleted file mode 100644 index 76b1e519..00000000 --- a/nix/homeModules/common/fish/functions/deactivate-nix-env.fish +++ /dev/null @@ -1,11 +0,0 @@ -function deactivate-nix-env \ - --description "Remove a nix environment from path" - ### Arguments: - if [ (count $argv) -ne 1 ] - echo "Must provide exactly one argument, the path to be removed" - return 1 - end - set env_name $argv[1] - - fish_remove_path "$HOME/.environments/$argv[1]/bin" -end