2022-09-24 03:24:58 +00:00
|
|
|
let _ = builtins.trace "${toString ./.}/default.nix"; in
|
|
|
|
with builtins;
|
|
|
|
with import (toString ../functions);
|
|
|
|
|
2022-09-26 13:27:59 +00:00
|
|
|
let hosts = import-folder {path = "${toString ./.}"; filenameMatch = ".*[.]nix"; filenameBadMatch = ".*_.*";};
|
|
|
|
in
|
|
|
|
|
|
|
|
{...}:
|
|
|
|
mapAttrs (hostname: hostdef:
|
|
|
|
|
|
|
|
{...}: hostdef
|
|
|
|
|
|
|
|
) hosts
|