snowhawk: libvirtd and qemu stuff

This commit is contained in:
Zynh Ludwig 2025-03-27 22:30:43 -07:00
parent dd4dc5eadf
commit 4d1a534055

View file

@ -146,6 +146,8 @@
};
environment.systemPackages = with pkgs; [
mysql-workbench
# FIXME: extract to theme module?
pkgs.rose-pine-gtk-theme
pkgs.rose-pine-icon-theme
@ -197,8 +199,16 @@
# Also recommended, either as an alternative or in addition
zramSwap.enable = true;
virtualisation.docker.enable = true;
users.users.ravenshade.extraGroups = [ "docker" "libvirtd" ];
virtualisation = {
libvirtd.enable = true;
libvirtd = {
enable = true;
qemu = {
package = pkgs.qemu_kvm;
};
};
};
programs.virt-manager.enable = true;