mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Testing some kernel and systemd config changes
This commit is contained in:
parent
c82069045e
commit
0b2241d439
6 changed files with 25 additions and 13 deletions
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue