diff options
author | Azat Bahawi <azat@bahawi.net> | 1970-01-01 03:00:00 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-09-20 11:51:54 +0300 |
commit | 38bab29776950ac2364ed64195b89887717c33de (patch) | |
tree | edaaf366a55dbe96d268019124536bc504c64e87 /profile/.profile.d/40_nix.sh |
Diffstat (limited to 'profile/.profile.d/40_nix.sh')
-rw-r--r-- | profile/.profile.d/40_nix.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/profile/.profile.d/40_nix.sh b/profile/.profile.d/40_nix.sh new file mode 100644 index 0000000..ede32bf --- /dev/null +++ b/profile/.profile.d/40_nix.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +nix_sh="${HOME}/.nix-profile/etc/profile.d/nix.sh" + +if [ -e "${nix_sh}" ]; then + # shellcheck disable=SC1090 + . "${nix_sh}" + + export NIXPKGS_ALLOW_UNFREE="1" + + hm_session_vars="$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh" + if [ -e "${hm_session_vars}" ]; then + # shellcheck disable=SC1090 + . "${hm_session_vars}" + fi + unset hm_session_vars +fi + +unset nix_sh |