From 9ae72167c4ffb49dd645e4c0d1096247c2af5266 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 15 May 2021 00:13:26 +0200 Subject: [PATCH] flake.nix: Allow unfree packages Some packages are unfree, since they are lacking a license. This makes them usable via the package output of the flake. If you use the overlay, the configuration from the nixpkgs instance using the overlay will be respected. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 2cf3d8c..5698e58 100644 --- a/flake.nix +++ b/flake.nix @@ -9,6 +9,7 @@ import nixpkgs { inherit system; overlays = [ self.overlay ]; + config.allowUnfree = true; } ); in