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.
This commit is contained in:
Simon Bruder 2021-05-15 00:13:26 +02:00 committed by Tadeo Kondrak
parent 21c1400739
commit 9ae72167c4

View file

@ -9,6 +9,7 @@
import nixpkgs {
inherit system;
overlays = [ self.overlay ];
config.allowUnfree = true;
}
);
in