configuration.nix/system/virtualisation.nix

17 lines
278 B
Nix
Raw Normal View History

2023-03-25 22:10:09 +05:30
{pkgs, ...}: {
2023-03-15 22:11:59 +05:30
virtualisation = {
2023-03-15 22:48:55 +05:30
docker = {
enable = true;
storageDriver = "btrfs";
};
2023-03-15 22:11:59 +05:30
kvmgt.enable = true;
libvirtd = {
enable = true;
qemu.ovmf = {
enable = true;
2023-03-25 22:10:09 +05:30
packages = [pkgs.OVMFFull.fd];
2023-03-15 22:11:59 +05:30
};
};
};
}