nibylandia/meta.nix

17 lines
529 B
Nix
Raw Permalink Normal View History

2023-11-30 21:09:21 +00:00
let
ar_khas =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGfIRe1nH6vwjQTjqHNnkKAdr1VYqGEeQnqInmf3A6UN ar@khas";
ar_microlith =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO6rEwERSm/Fj4KO4SxFIo0BUvi9YNyf8PSL1FteMcMt ar@microlith";
2024-02-18 12:43:54 +00:00
defaultDomain = "tail412c1.ts.net";
2023-11-30 21:09:21 +00:00
in {
2023-11-30 20:55:15 +00:00
hosts = builtins.mapAttrs (name: value:
2024-02-18 12:43:54 +00:00
{
targetHost = name + "." + defaultDomain;
}
// builtins.fromJSON (builtins.readFile (./nixos/. + "/${name}/meta.json")))
2023-11-30 20:55:15 +00:00
(builtins.readDir ./nixos);
2023-11-30 21:09:21 +00:00
users.ar = [ ar_khas ar_microlith ];
2023-11-30 20:55:15 +00:00
}