This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/virtualisation.nix

22 lines
338 B
Nix

{ config, pkgs, ... }: {
# setup virt-manager
programs.virt-manager.enable = true;
# virtualistation
virtualisation = {
# libvirtd
libvirtd = {
enable = true;
};
# podman
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}