15 lines
439 B
Nix
15 lines
439 B
Nix
{
|
|
imports = [
|
|
(toString ../profiles/qemu-vm-install-media)
|
|
];
|
|
config = {
|
|
#deployment.targetHost = "";
|
|
#deployment.targetUser = "";
|
|
#deployment.targetPort = "";
|
|
networking.hostName = "nixos";
|
|
#networking.interfaces.br0.ipv4.addresses = [ ];
|
|
#networking.interfaces.br0.ipv4.routes = [ {address = "0.0.0.0"; prefixLength = 0; via = "172.16.1.1"; } ];
|
|
#networking.interfaces.br0.useDHCP = false;
|
|
};
|
|
}
|