From 98404a158b48cdd2cbfe8a3d21f8ff05a35e4759 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Mon, 1 Mar 2021 23:05:32 -0700 Subject: [PATCH] hosts: pass host as reference Allow easier debugging, in the same vain as 165191391025e956fd8349606663e51014753e10. --- hosts/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/default.nix b/hosts/default.nix index 64fca1a8..c8403ad3 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -64,7 +64,7 @@ let local = { require = [ - (import "${toString ./.}/${hostName}.nix") + "${toString ./.}/${hostName}.nix" ]; };