From b6590bb4f3b91f9b5ff21c44ba5595a9f9a83c59 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Thu, 26 Oct 2023 15:11:06 +0200 Subject: [PATCH] allow unfree packages --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3170a94..d0336ea 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,7 @@ # ]; supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { - pkgs = import nixpkgs { inherit system; }; #overlays + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; #overlays }); in {