From dc17c4e8ceaa6c5bcb4e3ef3ac72526629dde3ec Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sat, 8 Jun 2024 12:25:15 +0200 Subject: [PATCH] flake.nix: allow unfree packages in overlay --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 89f2165..4c213c1 100644 --- a/flake.nix +++ b/flake.nix @@ -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; })