Testing some kernel and systemd config changes

This commit is contained in:
Emmet 2023-11-12 10:10:37 -06:00
parent c82069045e
commit 0b2241d439
6 changed files with 25 additions and 13 deletions

View file

@ -1,13 +1,14 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.virt-manager ];
environment.systemPackages = with pkgs; [ virt-manager virtualbox ];
virtualisation.libvirtd = {
allowedBridges = [
"nm-bridge"
"virbr0"
];
enable = true;
qemuRunAsRoot = false;
allowedBridges = [
"nm-bridge"
"virbr0"
];
enable = true;
qemuRunAsRoot = false;
};
boot.extraModulePackages = with config.boot.kernelPackages; [ virtualbox ];
}