20 lines
249 B
Nix
20 lines
249 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
base.hostName = "";
|
|
network.routingType = "";
|
|
network.hardwareAddress = "";
|
|
network.staticAddresses = [
|
|
"/24"
|
|
"/64"
|
|
];
|
|
qemu.enable = true;
|
|
spice.enable = true;
|
|
|
|
base.userSSHKeys = [ ];
|
|
}
|