Add libvirtd for VM management

It was useful for testing out Umbrel
This commit is contained in:
Eli Ribble 2024-12-08 14:59:29 -07:00
parent de0b9e515f
commit eae408484b
1 changed files with 3 additions and 1 deletions

View File

@ -173,7 +173,7 @@
users.users.eliribble = {
isNormalUser = true;
description = "Eli Ribble";
extraGroups = [ "adbusers" "networkmanager" "wheel" ];
extraGroups = [ "adbusers" "libvirtd" "networkmanager" "wheel" ];
packages = with pkgs; [
kdePackages.kate
# thunderbird
@ -189,6 +189,7 @@
# Set neovim as the default editor
programs.neovim.enable = true;
programs.neovim.defaultEditor = true;
programs.virt-manager.enable = true;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"brgenml1lpr" "lunar-client" "spotify"
@ -272,5 +273,6 @@
systemd.network.wait-online.enable = false;
virtualisation.docker.enable = false;
virtualisation.libvirtd.enable = true;
virtualisation.podman.enable = true;
}