diff --git a/home/home.nix b/home/home.nix index 76d05a6..5b2097b 100644 --- a/home/home.nix +++ b/home/home.nix @@ -28,14 +28,14 @@ ]); }; - home.file.".pip/pip.conf" = (lib.strings.concatStringsSep "\n" [ + home.file.".pip/pip.conf".text = (lib.strings.concatStringsSep "\n" [ "[global]" "retries = 1" "index-url = https://pypi.python.org/simple" "extra-index-url =" " https://pypi.ivrtechnlology.com/simple/" " https://pypiev.ivrtechnology.com/simple/" - ]; + ]); home.stateVersion = "22.05"; home.packages = with pkgs; [ diff --git a/home/xonsh_header.xsh b/home/xonsh_header.xsh index 22441ec..1c332a3 100644 --- a/home/xonsh_header.xsh +++ b/home/xonsh_header.xsh @@ -23,3 +23,5 @@ $PATH.insert(0, Path("~/.local/bin").expanduser()) if platform == "darwin": $PATH.append(Path("/opt/homebrew/bin/")) + $PATH.append(Path("/run/current-system/sw/bin")) + $PATH.append(Path("/nix/var/nix/profiles/default/bin"))