nixos-private-dots/modules/nixos/virtmanager.nix
2024-07-31 06:18:16 +03:00

15 lines
No EOL
379 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }: { # Работа с виртуальными машинами
virtualisation.libvirtd = { # https://nixos.wiki/wiki/Libvirt
enable = true;
qemu = {
package = pkgs.qemu_full;
};
};
# Network autostart - `virsh net-autostart default` в терминале
programs.virt-manager.enable = true; # https://nixos.wiki/wiki/Virt-manager
}