about summary refs log tree commit diff
path: root/profile/.profile.d/40_nix.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--profile/.profile.d/40_nix.sh19
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

Consider giving Nix/NixOS a try! <3