allow unfree packages
This commit is contained in:
parent
ec5d6d0e2a
commit
b6590bb4f3
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
# ];
|
# ];
|
||||||
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||||
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
||||||
pkgs = import nixpkgs { inherit system; }; #overlays
|
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; #overlays
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
Reference in a new issue