12 lines
266 B
Nix
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"
|
|
];
|
|
};
|
|
}
|