mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Fixes qemu user session uefi
This commit is contained in:
parent
c79e9d0dc1
commit
343c508be6
3 changed files with 19 additions and 0 deletions
13
system/app/virtualization.nix
Normal file
13
system/app/virtualization.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.virt-manager ];
|
||||
virtualisation.libvirtd = {
|
||||
allowedBridges = [
|
||||
"nm-bridge"
|
||||
"virbr0"
|
||||
];
|
||||
enable = true;
|
||||
qemuRunAsRoot = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue