flake.nix: allow unfree packages in overlay
This commit is contained in:
parent
e698df1244
commit
dc17c4e8ce
|
@ -94,7 +94,10 @@
|
|||
};
|
||||
|
||||
overlays = let
|
||||
nonrecursive-unstable-pkgs = nixpkgs-unstable.legacyPackages.${system};
|
||||
nonrecursive-unstable-pkgs = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in [
|
||||
(self: super: { pgadmin4 = nonrecursive-unstable-pkgs.pgadmin4; })
|
||||
# (self: super: { pcloud = nonrecursive-unstable-pkgs.pcloud; })
|
||||
|
|
Loading…
Reference in New Issue