summaryrefslogtreecommitdiff
path: root/services/podman.nix
blob: 9e875d109909f9d1bda931125208c59c522e6526 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, ... }:
{
  virtualisation = {
    podman = {
      enable = true;
      dockerCompat = true;
    };
    oci-containers.backend = "podman";
  };
}