hosts/web-01: add default.nix

This commit is contained in:
2025-08-04 22:57:03 -07:00
parent f14a130bd6
commit e04b8251c7

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

@@ -0,0 +1,21 @@
{
config,
lib,
pkgs,
...
}:
{
base.hostName = "web-01";
network.routingType = "dynamic";
network.hardwareAddress = "BC:24:11:9C:0A:B4";
network.staticAddresses = [
"/24"
"/64"
];
qemu.enable = true;
spice.enable = true;
base.userSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKG67f82Yhqe2OkeHUN5g8QNLJzGI787OLvvNVwPUfeb etorres@xenon"
];
}