diff options
-rw-r--r-- | gitignore | 3 | ||||
m--------- | private | 0 | ||||
-rw-r--r-- | profile | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -8,6 +8,9 @@ # Ignore backup files in general *~ +# Ignore default meson output in general +result + # C development .gdbinit .cache/ diff --git a/private b/private -Subproject 47ecff7a79099d6ad1d2e0bc5c777970e1c693b +Subproject b56b56738a1ea5faee474d74a97166ef5619bfc @@ -10,8 +10,10 @@ export CT_LOCAL_TARBALLS_DIR="~/src/ct-ng" export PYTHONPYCACHEPREFIX="$HOME/.cache/pycache" # Nix -[ -f "$HOME/.nix-profile/etc/profile.d/nix.sh" ] && \ - . "$HOME/.nix-profile/etc/profile.d/nix.sh" # added by Nix installer +for profile in "$HOME"/.nix-profile/etc/profile.d/*; do + [ -f "$profile" ] || continue + source "$profile" +done # Rest of the profile run only if login is from linux console |