From ca0127c2b1707cdb6afe96ef5480423c3b67a5d1 Mon Sep 17 00:00:00 2001 From: noe Date: Sat, 6 Jan 2024 13:29:30 -0500 Subject: [PATCH] ingress-proxy: refactor vhosts --- nixos/hosts/ingress-proxy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/hosts/ingress-proxy/default.nix b/nixos/hosts/ingress-proxy/default.nix index 2109162..679cf50 100644 --- a/nixos/hosts/ingress-proxy/default.nix +++ b/nixos/hosts/ingress-proxy/default.nix @@ -33,7 +33,7 @@ in { serverAliases = aliases; root = pkgs.stdenvNoCC.mkDerivation { - src = if src then src else pkgs.lib.fetchGit { inherit url rev name; }; + src = if src then src else builtins.fetchGit { inherit url rev name; }; installPhase = "cp -r $src $out"; }; };