blob: 5a9e5770376dbb9e934c3a3db12be0e0db5269ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
virt-manager
bridge-utils
];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# virtualization
virtualisation = {
libvirtd = {
enable = true;
qemu.runAsRoot = true;
qemu.package = pkgs.qemu_full;
};
podman = {
enable = true;
dockerCompat = true;
};
};
}
|