18 lines
313 B
Nix
18 lines
313 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
virtualisation.oci-containers.containers."pairdrop" = {
|
|
image = "lscr.io/linuxserver/pairdrop:latest";
|
|
ports = [ "${config.ports.pairdrop}:3000" ];
|
|
extraOptions = [
|
|
"--pull=newer"
|
|
"--label=io.containers.autoupdate=registry"
|
|
];
|
|
};
|
|
}
|