Add libvirtd for VM management
It was useful for testing out Umbrel
This commit is contained in:
parent
de0b9e515f
commit
eae408484b
|
@ -173,7 +173,7 @@
|
||||||
users.users.eliribble = {
|
users.users.eliribble = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Eli Ribble";
|
description = "Eli Ribble";
|
||||||
extraGroups = [ "adbusers" "networkmanager" "wheel" ];
|
extraGroups = [ "adbusers" "libvirtd" "networkmanager" "wheel" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
kdePackages.kate
|
kdePackages.kate
|
||||||
# thunderbird
|
# thunderbird
|
||||||
|
@ -189,6 +189,7 @@
|
||||||
# Set neovim as the default editor
|
# Set neovim as the default editor
|
||||||
programs.neovim.enable = true;
|
programs.neovim.enable = true;
|
||||||
programs.neovim.defaultEditor = true;
|
programs.neovim.defaultEditor = true;
|
||||||
|
programs.virt-manager.enable = true;
|
||||||
|
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
"brgenml1lpr" "lunar-client" "spotify"
|
"brgenml1lpr" "lunar-client" "spotify"
|
||||||
|
@ -272,5 +273,6 @@
|
||||||
systemd.network.wait-online.enable = false;
|
systemd.network.wait-online.enable = false;
|
||||||
|
|
||||||
virtualisation.docker.enable = false;
|
virtualisation.docker.enable = false;
|
||||||
|
virtualisation.libvirtd.enable = true;
|
||||||
virtualisation.podman.enable = true;
|
virtualisation.podman.enable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue