From 61c60d4450efd8fb80ada97d470f993d688df722 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 26 Oct 2021 08:33:17 -0400 Subject: [PATCH] add nixpkgs allowUnfree option --- profiles/core/nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/profiles/core/nix.nix b/profiles/core/nix.nix index f9b3e07..a9d8cb4 100644 --- a/profiles/core/nix.nix +++ b/profiles/core/nix.nix @@ -51,4 +51,8 @@ nixos-option = "nixos-option -I nixpkgs=${self}/lib/compat"; }; }; + + nixpkgs.config = { + allowUnfree = true; + }; }