nix-config/hosts/desktops/common/virtualisation.nix
2023-02-22 15:51:31 -03:00

10 lines
185 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
virtualisation = {
libvirtd.enable = true;
waydroid.enable = true;
lxd.enable = true;
docker.enable = true;
};
}