From 85f76974281de4fe0d7ce340087f7b1a53b6d149 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Wed, 20 Mar 2024 18:19:07 +0100 Subject: [PATCH] fix: remove merlin specific fixes moved them to home.nix --- zsh.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/zsh.nix b/zsh.nix index c5a0292..1e38011 100755 --- a/zsh.nix +++ b/zsh.nix @@ -167,12 +167,6 @@ # histFile = "${config.xdg.cacheHome}/zhistory"; }; - if [ $(hostname) == "merlin.fit.vutbr.cz" ]; then - for f in ${trash-cli}/bin*; do - makeWrapper $out/bin/$(basename $f) $f --unset PYTHONHOME - done - fi - home.packages = with pkgs; [ tldr lsd @@ -187,11 +181,4 @@ p7zip # ex gzip # ex ]; - - for f in ${trash-cli}/bin*; do - makeWrapper $out/bin/$(basename $f) $f --unset PYTHONHOME - done - for f in ${thefuck}/bin*; do - makeWrapper $out/bin/$(basename $f) $f --unset PYTHONHOME - done }