dotfiles/modules/nixos/homelab/guests/default.nix

13 lines
315 B
Nix
Raw Normal View History

2025-11-06 16:35:10 -06:00
let
2025-12-08 22:25:13 -06:00
inherit (import ./helpers.nix) labHelpers;
2025-11-06 16:35:10 -06:00
importList =
let
content = builtins.readDir ./.;
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
in
2025-12-08 22:25:13 -06:00
map (name: ./. + "/${name}" { inherit labHelpers; }) dirContent;
2025-11-06 16:35:10 -06:00
in
{
imports = importList;
}