nixos-config/nixos/modules/virtmanager.nix

8 lines
113 B
Nix
Raw Normal View History

2025-01-26 15:02:48 +03:00
{ pkgs, ... }: {
2024-04-17 05:52:14 +05:00
virtualisation.libvirtd.enable = true;
programs.virt-manager = {
enable = true;
};
}