possibly implement homarr as the new front page

This commit is contained in:
TheWanderingCrow 2026-02-04 19:10:05 -05:00
parent 005731f1d5
commit 3a444f8b73
3 changed files with 25 additions and 5 deletions

View file

@ -0,0 +1,20 @@
{ 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"
];
};
};
};
}

View file

@ -6,9 +6,9 @@
...
}:
{
imports = [
inputs.nix-secrets.flakeModules.jellyfin
inputs.quadlet-nix.nixosModules.quadlet
];
services.jellyfin = {