diff options
author | Ismaël Bouya <ismael.bouya@fretlink.com> | 2020-12-16 16:53:14 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2020-12-16 16:53:14 +0100 |
commit | c33369a9ffa6945cc1928986ae280563d2ec0d85 (patch) | |
tree | a2db9c51ea64c56417e4963b84010ca68f92849a /files/.profile | |
parent | 425ab813a99a2aec3c4ce5cc432356451aa343c3 (diff) | |
download | docker-nix-c33369a9ffa6945cc1928986ae280563d2ec0d85.tar.gz docker-nix-c33369a9ffa6945cc1928986ae280563d2ec0d85.tar.zst docker-nix-c33369a9ffa6945cc1928986ae280563d2ec0d85.zip |
Use dedicated system path for nix
Diffstat (limited to 'files/.profile')
-rwxr-xr-x | files/.profile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/files/.profile b/files/.profile index 2fadec2..e705bc0 100755 --- a/files/.profile +++ b/files/.profile | |||
@@ -1,11 +1,13 @@ | |||
1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
2 | 2 | ||
3 | # Source nix environment | 3 | # Source nix environment |
4 | nix_profile="/home/nixuser/.nix-profile/etc/profile.d/nix.sh" | 4 | nix_profile="$NIX_SYSTEM_PATH/etc/profile.d/nix.sh" |
5 | # shellcheck source=/home/nixuser/.nix-profile/etc/profile.d/nix.sh | 5 | # shellcheck source=$NIX_SYSTEM_PATH/etc/profile.d/nix.sh |
6 | [ -e "${nix_profile}" ] && . "${nix_profile}" | 6 | [ -e "${nix_profile}" ] && . "${nix_profile}" |
7 | 7 | ||
8 | # Propagate UTF8 | 8 | # Propagate UTF8 |
9 | # https://github.com/NixOS/nix/issues/599#issuecomment-153885553 | 9 | # https://github.com/NixOS/nix/issues/599#issuecomment-153885553 |
10 | LOCALE_ARCHIVE="$(nix-env --installed --no-name --out-path --query glibc-locales)/lib/locale/locale-archive" | 10 | LOCALE_ARCHIVE="$NIX_SYSTEM_PATH/lib/locale/locale-archive" |
11 | export LOCALE_ARCHIVE | 11 | export LOCALE_ARCHIVE |
12 | |||
13 | PATH="$PATH:$NIX_SYSTEM_PATH/bin" | ||