mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[General] fix compatibility with 22.11
This commit is contained in:
parent
38fb142e45
commit
97ab180e3b
8 changed files with 15 additions and 59 deletions
|
|
@ -34,15 +34,18 @@ in {
|
|||
qemu = {
|
||||
package = pkgs.qemu_full;
|
||||
ovmf.enable = true;
|
||||
ovmf.package = pkgs.OVMFFull;
|
||||
ovmf.packages = [ pkgs.OVMFFull ];
|
||||
swtpm.enable = true;
|
||||
};
|
||||
};
|
||||
virtualisation.spiceUSBRedirection.enable = true; # Quality of life
|
||||
security.virtualisation.flushL1DataCache = "never"; # We do not care, we are on a dev platform
|
||||
|
||||
virtualisation.virtualbox.host.enable = true;
|
||||
virtualisation.virtualbox.host.enableExtensionPack = true;
|
||||
virtualisation.virtualbox = {
|
||||
host.enable = true;
|
||||
host.enableExtensionPack = true;
|
||||
host.enableHardening = false; # Causes kernel build failures
|
||||
};
|
||||
|
||||
environment.extraOutputsToInstall = [
|
||||
"doc" "info" "devdoc"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue