feat: add libvirt
This commit is contained in:
parent
f4a331abeb
commit
232bb15689
1 changed files with 20 additions and 0 deletions
|
@ -40,6 +40,26 @@
|
|||
programs.hyprland.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
|
||||
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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
systemd.services.libvirtd.wantedBy = lib.mkForce [ ];
|
||||
systemd.services.libvirt-guests.wantedBy = lib.mkForce [ ];
|
||||
|
||||
users.users.ahurac = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "networkmanager" ];
|
||||
|
|
Loading…
Reference in a new issue