From 38bab29776950ac2364ed64195b89887717c33de Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Thu, 1 Jan 1970 03:00:00 +0300 Subject: chore: init --- profile/.profile.d/40_nix.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 profile/.profile.d/40_nix.sh (limited to 'profile/.profile.d/40_nix.sh') 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 -- cgit 1.4.1