snowhawk: libvirtd and qemu stuff
This commit is contained in:
parent
dd4dc5eadf
commit
4d1a534055
1 changed files with 11 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue