10 lines
237 B
Nix
10 lines
237 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = [ pkgs.qemu ];
|
||
|
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
|
||
|
boot.binfmt.emulatedSystems = [
|
||
|
"aarch64-linux"
|
||
|
"riscv64-linux"
|
||
|
];
|
||
|
}
|