13 lines
192 B
Nix
13 lines
192 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
|
|
# Run container as systemd service
|
|
oci-containers = {
|
|
backend = "docker";
|
|
containers = {};
|
|
};
|
|
};
|
|
}
|