39 lines
777 B
Nix
39 lines
777 B
Nix
![]() |
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
cfg = config.extraServices.virtualisation;
|
||
|
in {
|
||
|
options.extraServices.virtualisation.enable = mkEnableOption "enable virtualisation";
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
virtualisation = {
|
||
|
libvirtd = {
|
||
|
enable = true;
|
||
|
qemu = {
|
||
|
package = pkgs.qemu_kvm;
|
||
|
runAsRoot = true;
|
||
|
swtpm.enable = true;
|
||
|
ovmf = {
|
||
|
enable = true;
|
||
|
packages = [
|
||
|
(pkgs.OVMF.override {
|
||
|
secureBoot = true;
|
||
|
tpmSupport = true;
|
||
|
})
|
||
|
.fd
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
programs.virt-manager.enable = true;
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
OVMFFull
|
||
|
];
|
||
|
};
|
||
|
}
|