server/hosts/kamoshi/profiles/kotori.nix
2023-07-19 18:58:53 +02:00

20 lines
367 B
Nix

{ config, pkgs, ... }:
{
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
};
oci-containers = {
backend = "podman";
containers = {
kotori = {
image = "kamov/kotori:latest";
environmentFiles = [ /root/secrets/kotori.env ];
autoStart = true;
};
};
};
};
}