16 lines
278 B
Nix
16 lines
278 B
Nix
{
|
|
imports = [
|
|
../format.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
format.device = "/dev/vda";
|
|
networking.hostName = "eirene-vm";
|
|
boot.kernelParams = [ "video=Virtual-1:2560x1600@60" ];
|
|
|
|
fileSystems."/host" = {
|
|
device = "host";
|
|
fsType = "virtiofs";
|
|
};
|
|
}
|