14 lines
286 B
Nix
14 lines
286 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.oci-containers.containers."librespeed" = {
|
|
image = "lscr.io/linuxserver/librespeed:latest";
|
|
environment = {
|
|
TZ = "America/Bahia";
|
|
};
|
|
extraOptions = [
|
|
"--pull=newer"
|
|
"--label=io.containers.autoupdate=registry"
|
|
];
|
|
};
|
|
}
|