snowflake/hosts/yuki/services/homarr.nix

13 lines
292 B
Nix
Raw Normal View History

2023-06-23 22:26:52 -04:00
_: {
virtualisation.oci-containers.containers.homarr = {
2023-09-01 08:52:19 -04:00
image = "ghcr.io/ajnart/homarr:0.13.2";
ports = [
"7575:7575"
];
volumes = [
"/home/notohh/docker/homarr/configs:/app/data/configs"
"/home/notohh/docker/homarr/icons:/app/public/icons"
];
};
}