snowflake/hosts/yuki/services/homarr.nix
notohh 11fd6aab07
All checks were successful
flake check / check (push) Successful in 3m25s
fmt check / check (push) Successful in 39s
homarr: bump version
2023-11-10 19:15:41 -05:00

13 lines
338 B
Nix

_: {
virtualisation.oci-containers.containers.homarr = {
image = "ghcr.io/ajnart/homarr:0.14.0";
ports = [
"7575:7575"
];
volumes = [
"/home/notohh/docker/homarr/configs:/app/data/configs"
"/home/notohh/docker/homarr/icons:/app/public/icons"
"/home/notohh/docker/homarr/data:/data"
];
};
}