hosts/syncthing-01: add default.nix

This commit is contained in:
2025-07-27 00:15:08 -07:00
parent 5d3ff22e9f
commit 1ee43b1658

View File

@@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
...
}:
{
base.hostName = "syncthing-01";
network.routingType = "dynamic";
network.hardwareAddress = "BC:24:11:38:1C:54";
network.staticAddresses = [
"/24"
"/64"
];
qemu.enable = true;
spice.enable = true;
syncthingserver.enable = true;
base.userSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEXuLe99meMiylrJQKz8/WqgHQWA8aJ/IZL+1SAVs8n2 etorres@xenon"
];
}