17 lines
356 B
Nix
17 lines
356 B
Nix
|
|
{ ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
virtualisation.containers.enable = true;
|
||
|
|
virtualisation = {
|
||
|
|
podman = {
|
||
|
|
enable = true;
|
||
|
|
dockerCompat = true;
|
||
|
|
defaultNetwork.settings.dns_enabled = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
virtualisation.libvirtd.enable = true;
|
||
|
|
programs.virt-manager.enable = true;
|
||
|
|
programs.nix-ld.enable = true;
|
||
|
|
hardware.graphics.enable32Bit = true;
|
||
|
|
}
|