mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 08:26:12 +01:00
35 lines
649 B
Nix
35 lines
649 B
Nix
{pkgs, ...}: {
|
|
boot.kernel.sysctl = {"vm.max_map_count" = 2147483642;};
|
|
|
|
# Install necessary packages
|
|
environment.systemPackages = with pkgs; [
|
|
virt-manager
|
|
virt-viewer
|
|
spice
|
|
spice-gtk
|
|
spice-protocol
|
|
win-virtio
|
|
win-spice
|
|
adwaita-icon-theme
|
|
distrobox
|
|
nvidia-container-toolkit
|
|
];
|
|
|
|
services.spice-vdagentd.enable = true;
|
|
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
};
|
|
spiceUSBRedirection.enable = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
qemu = {
|
|
swtpm.enable = true;
|
|
ovmf.enable = true;
|
|
ovmf.packages = [pkgs.OVMFFull.fd];
|
|
};
|
|
};
|
|
};
|
|
}
|