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