29 lines
627 B
Nix
29 lines
627 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
pkgsUnstable,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
network.routingType = "dynamic";
|
|
network.hardwareAddress = "BC:24:11:AE:52:80";
|
|
network.staticAddresses = [
|
|
"/24"
|
|
"/64"
|
|
];
|
|
qemu.enable = true;
|
|
spice.enable = true;
|
|
|
|
logserver = {
|
|
enable = true;
|
|
};
|
|
|
|
base.userSSHKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQoGiE3hhfzbpW1UxrH7bgmP1Q5MDmFIvHq1IW2lb1f etorres@xenon"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIwmazLbH549WPEjEfe92HaqkpUaVo0+J3C/D4Iun/uc etorres@radon"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOicyMBTcWNqQjm5w1flgZlZqT0uFkTdA2BPk5gbUfa0 etorres@erics-mac"
|
|
];
|
|
}
|