hosts/app-01: add initial config

This commit is contained in:
2025-08-23 20:19:48 -07:00
parent fbd39e8944
commit 88ddfb4de5

22
hosts/app-01/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
pkgsUnstable,
inputs,
...
}:
{
network.routingType = "dynamic";
network.hardwareAddress = "BC:24:11:B7:0C:49";
network.staticAddresses = [
"/24"
"/64"
];
qemu.enable = true;
spice.enable = true;
base.userSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIExID7De5qVOFAoe4o4+A0SkmVBKLxm1M75ngr3eAr4A etorres@erics-mac"
];
}