nix-config/hosts/desktops/common/virtualisation.nix
2022-11-29 17:36:21 -03:00

11 lines
195 B
Nix

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