summaryrefslogtreecommitdiff
path: root/modules/server/virtualisation/default.nix
blob: dfefe98e7487b7a7db7e22dadb2430ea620635b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, ... }:
{
  imports = [
    ./containers
    ./docker.nix
    ./podman.nix
  ];

  virtualisation = {
    containers.enable = true;
    oci-containers.backend = config.modules.server.containerEngine;
  };
}