server/hosts/kamoshi/profiles/kotori.nix

17 lines
316 B
Nix
Raw Normal View History

2023-07-19 18:20:27 +02:00
{ config, pkgs, ... }:
{
virtualisation = {
docker.enable = true;
oci-containers = {
backend = "docker";
containers = {
kotori = {
image = "kamov/kotori";
environmentFiles = [ /root/secrets/kotori.env ];
autoStart = true;
};
};
};
};
}