mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-14 00:28:58 -05:00
20 lines
336 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|