22 lines
468 B
Nix
22 lines
468 B
Nix
|
{
|
||
|
virtualisation = {
|
||
|
containers.enable = true;
|
||
|
podman.enable = true;
|
||
|
oci-containers.containers = {
|
||
|
calibre = {
|
||
|
image = "lscr.io/linuxserver/calibre:latest";
|
||
|
volumes = [
|
||
|
"calibre-config:/config"
|
||
|
"/video-data:/data"
|
||
|
];
|
||
|
environment.TZ = "America/New_York";
|
||
|
labels.swag = "enable";
|
||
|
extraOptions = [
|
||
|
"--pull=newer"
|
||
|
"--network=www"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|