13 lines
296 B
Nix
13 lines
296 B
Nix
|
{...}: {
|
||
|
virtualisation.oci-containers.containers.homarr = {
|
||
|
image = "ghcr.io/ajnart/homarr:0.12.3";
|
||
|
ports = [
|
||
|
"7575:7575"
|
||
|
];
|
||
|
volumes = [
|
||
|
"/home/notohh/docker/homarr/configs:/app/data/configs"
|
||
|
"/home/notohh/docker/homarr/icons:/app/public/icons"
|
||
|
];
|
||
|
};
|
||
|
}
|