hosts/log-01: add default.nix

This commit is contained in:
2025-08-04 22:55:05 -07:00
parent 8d82979edd
commit f14a130bd6

21
hosts/log-01/default.nix Normal file
View File

@@ -0,0 +1,21 @@
{
config,
lib,
pkgs,
...
}:
{
base.hostName = "log-01";
network.routingType = "dynamic";
network.hardwareAddress = "BC:24:11:AE:52:80";
network.staticAddresses = [
"/24"
"/64"
];
qemu.enable = true;
spice.enable = true;
base.userSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQoGiE3hhfzbpW1UxrH7bgmP1Q5MDmFIvHq1IW2lb1f etorres@xenon"
];
}