2023-08-03 20:00:12 +00:00
|
|
|
{pkgs, ...}:
|
|
|
|
{
|
|
|
|
networking.hostName = "clementine";
|
2023-08-03 23:25:15 +00:00
|
|
|
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;
|
2023-08-03 20:00:12 +00:00
|
|
|
}
|