flake.nix: allow unfree packages in overlay

This commit is contained in:
Oystein Kristoffer Tveit 2024-06-08 12:25:15 +02:00
parent e698df1244
commit dc17c4e8ce
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 4 additions and 1 deletions

View File

@ -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; })