CrOS/modules/quadlets/homearr/default.nix
2026-02-04 19:28:44 -05:00

20 lines
336 B
Nix

{ lib, ... }:
let
port = builtins.toString (lib.custom.autoport "homarr");
in
{
systemd.tmpfiles.rules = {
};
virtualisation.quadlet = {
containers = {
homarr.containerConfig = {
image = "ghcr.io/homarr-labs/homarr:latest";
publishPorts = [
"${port}:7575"
];
};
};
};
}