From fb5e1e245110104105b4c24fb5f1cab0b25e45e7 Mon Sep 17 00:00:00 2001 From: Olivier Date: Fri, 23 Jan 2026 20:00:10 -0400 Subject: [PATCH] Update flake.nix to allow unfree package cloudflare-warp --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c47487a..1526108 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,11 @@ in { legacyPackages = forAllSystems (system: import ./default.nix { - pkgs = import nixpkgs { inherit system; }; + pkgs = import nixpkgs { + inherit system; + config.allowUnfreePredicate = pkg: + nixpkgs.lib.getName pkg == "cloudflare-warp"; + }; }); packages = forAllSystems (system: nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) self.legacyPackages.${system}); };