nix-config/hosts/desktops/common/virtualisation.nix
2022-12-22 22:38:12 -03:00

11 lines
216 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
virtualisation = {
libvirtd.enable = true;
podman = {
enable = true;
dockerCompat = true; # Baisically aliases docker to podman
};
};
}