blob: 682f8d95db2bafe41bfd1e79fcc43218fbf568ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, ... }:
{
virtualisation.oci-containers.containers.pounce = {
inherit (config.modules.containers) extraOptions;
image = "fuwn/pounce";
autoStart = true;
ports = [ "6697:6697" ];
volumes = [ "/mnt/docker/pounce:/root/.config/pounce" ];
environment.USER = "fuwn";
};
}
|