mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 13:49:33 +01:00
19 lines
394 B
Nix
19 lines
394 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
virtualisation.oci-containers = {
|
||
|
backend = "docker";
|
||
|
containers = {
|
||
|
freshrss = {
|
||
|
image = "lscr.io/linuxserver/freshrss:latest";
|
||
|
volumes = [ "/srv/freshrss/config:/config" ];
|
||
|
ports = [ "8888:80" ];
|
||
|
environment = {
|
||
|
"PUID" = "1000";
|
||
|
"GUID" = "1000";
|
||
|
"TZ" = "Europe/Paris";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|