From 0ec23714afa9a870030b7c725bde054812cdd274 Mon Sep 17 00:00:00 2001 From: noe Date: Sat, 6 Jan 2024 13:33:25 -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 6e203d1..204be29 100644 --- a/nixos/hosts/ingress-proxy/default.nix +++ b/nixos/hosts/ingress-proxy/default.nix @@ -39,7 +39,7 @@ in { root = pkgs.stdenvNoCC.mkDerivation { name = name'; - src = if src then src else builtins.fetchGit { inherit url rev; }; + src = if src != null then src else builtins.fetchGit { inherit url rev; }; installPhase = "cp -r $src $out"; }; };