nixos/services/redlib.nix
rope f97d7ac829 redlib: reddit front-end at reddit.nordhammer.it
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-29 13:45:03 +01:00

11 lines
281 B
Nix

# services/redlib.nix — Private Reddit front-end at reddit.nordhammer.it
{ config, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
services.redlib = {
enable = true;
address = "127.0.0.1";
port = 8087;
};
};
}