nix-config/hosts/desktops/common/virtualisation.nix
2023-02-04 10:53:07 -03:00

13 lines
267 B
Nix

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