blob: f73242fdd47650512c44904b10ed5255c89094a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ config, ... }:
{
virtualisation.oci-containers.containers.momoka = {
inherit (config.modules.containers) extraOptions;
image = "fuwn/momoka";
autoStart = true;
ports = [ "70:70" ];
};
}
|