From 817e896d9bda75804528f62a75826e5e9e70267e Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Thu, 26 Dec 2024 17:35:40 +0100 Subject: [PATCH] Whoops, small bug --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8cd8b2b..ef5f2a3 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ in { nixosConfigurations = nixpkgs.lib.mapAttrs ( - hostname: value: (utils.mkSystem value // { inherit hostname; }) + hostname: value: (utils.mkSystem (value // { inherit hostname; })) ) hosts; }; }