2024-11-19 18:59:45 +01:00

12 lines
266 B
Nix

{
virtualisation.oci-containers.containers."homarr" = {
image = "ghcr.io/ajnart/homarr:latest";
ports = ["7575:7575"];
volumes = [
"homarr-configs:/app/public/config"
"homarr-icons:/app/public/icons"
"homarr-data:/data"
];
};
}