dotfiles/nix/modules/nixos/features/homelab/freshrss/default.nix

16 lines
241 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
let
port = 4003;
in
{
imports = [ ./container.nix ];
services.nginx = {
enable = true;
2024-12-26 21:35:05 +00:00
virtualHosts."freshrss.oliverdavies.uk".locations."/".proxyPass =
"http://localhost:${toString port}/";
};
}