From 1ccc5afb40d4ac36f47c8b34e3969a69f8f40df1 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Mon, 20 Dec 2021 23:16:13 -0500 Subject: [PATCH] remove unused hosts.nix --- lib/hosts.nix | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 lib/hosts.nix diff --git a/lib/hosts.nix b/lib/hosts.nix deleted file mode 100644 index 43b1b22..0000000 --- a/lib/hosts.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ path, nixosModule }: -let - - inherit (builtins) mapAttrs attrValues attrNames readDir foldl' listToAttrs; - - # grab a list of systems, with associated hostnames - # { x86_64-linux = [ "host1" "host2" ]; } - sysToHosts = mapAttrs - (system: _: attrNames (readDir (path + "/${system}"))) - (readDir path); - - # invert the attrset, from {sys=[name]} to {name=sys} - # { host1 = "x86_64-linux"; host2 = "x86_64-linux"; } - hostToSys = foldl' (a: b: a // b) { } - (attrValues - (mapAttrs - (system: hosts: listToAttrs (map (name: { inherit name; value = system; }) hosts)) - sysToHosts)); - -in -# produce stub configurations - # { - # host1 = { system = "x86_64-linux"; modules = [ ... ]; }; - # host2 = { system = "x86_64-linux"; modules = [ ... ]; }; - # } -mapAttrs - (hostName: system: { - inherit system; - modules = [ - (nixosModule) - (path + "/${system}/${hostName}") - { networking = { inherit hostName; }; } - ]; - }) - hostToSys