From db2229188e0f8ac0d3c58ce9118ec630128103d2 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 1 Jul 2024 21:00:28 +0200 Subject: [PATCH] nonfree! --- custom-pkgs/run/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom-pkgs/run/default.nix b/custom-pkgs/run/default.nix index 9c34413..11d6fc9 100644 --- a/custom-pkgs/run/default.nix +++ b/custom-pkgs/run/default.nix @@ -5,5 +5,6 @@ exit 1 fi shift - nix run nixpkgs#"$first" -- "$@" + export NIXPKGS_ALLOW_UNFREE=1 + nix run --impure nixpkgs#"$first" -- "$@" ''