Skip to content

Commit

Permalink
flake: add config.allowUnfree = true; to packages.x86_64-linux
Browse files Browse the repository at this point in the history
This is required due to the parsecgaming package containing licenses.unfree
  • Loading branch information
MatthewCroughan committed Apr 11, 2021
1 parent c468597 commit 3ce32c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Expand Up @@ -26,7 +26,7 @@

outputs = { self, home-manager, nixpkgs, agenix, ... }@inputs: {
# Declare some local packages be available via self.packages
packages.x86_64-linux = let pkgs = import nixpkgs { system = "x86_64-linux"; }; in {
packages.x86_64-linux = let pkgs = import nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; in {
parsecgaming = pkgs.callPackage ./pkgs/parsecgaming {};
dolphin-emu = pkgs.dolphinEmuMaster.overrideAttrs (oa: { src = inputs.dolphin-emu; version = inputs.dolphin-emu.rev; cmakeFlags = [ "-DUSE_SHARED_ENET=ON" "-DENABLE_LTO=ON" "-DDOLPHIN_WC_BRANCH=master" ]; });
};
Expand Down

0 comments on commit 3ce32c7

Please sign in to comment.