13 lines
287 B
Nix
13 lines
287 B
Nix
{pkgs, ...}:
|
|
{
|
|
networking.hostName = "clementine";
|
|
virtualisation = {
|
|
forwardPorts = [
|
|
{ from = "host"; host.port = 2222; guest.port = 22; }
|
|
];
|
|
graphics = true;
|
|
qemu.options = [ "-bios" "${pkgs.OVMF.fd}/FV/OVMF.fd" ];
|
|
};
|
|
services.qemuGuest.enable = true;
|
|
}
|