allow unfree packages

This commit is contained in:
Pim Kunis 2023-10-26 15:11:06 +02:00
parent ec5d6d0e2a
commit b6590bb4f3

View file

@ -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
{