Files
My_NixOS_Config/home-manager/homeserver/containers/gitea.nix
2025-12-02 16:34:54 +00:00

33 lines
537 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
services.podman = {
networks = {
gitea-net = {};
};
containers = {
gitea = {
image = "docker.gitea.com/gitea:latest";
autoUpdate = "registry";
network = [
"gitea-net"
"proxy-net"
];
environment = {
TZ = "Europe/Dublin";
};
volumes = [
"/home/cianh/gitea:/data"
"/etc/localtime:/etc/localtime:ro"
];
};
};
};
}