cornflake/hosts/default.nix
Kariya 37326ff287 Revert "Merge hare/master into master"
This reverts commit 1985a07745, reversing
changes made to 034f58347b.
2026-03-01 23:01:43 +09:00

9 lines
230 B
Nix

inputs:
rec {
hosts = {
aqua = import ./aqua inputs;
};
nixos = builtins.mapAttrs (_: host: host.nixos) hosts;
home-manager = builtins.foldl' (a: b: a // b) { } (map (h: h.home-manager) (builtins.attrValues hosts));
}