15 lines
256 B
Text
15 lines
256 B
Text
|
|
{ config, ... }:
|
||
|
|
let
|
||
|
|
cfg = import /etc/nixos/modules/vars.nix;
|
||
|
|
bazarr_port = cfg.arrstack.bazarr.port;
|
||
|
|
outpost_port = cfg.authentik.outpostPort;
|
||
|
|
domain = "mc-fucker.cool";
|
||
|
|
in
|
||
|
|
{
|
||
|
|
|
||
|
|
services.nginx.virtualHosts = {
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|
||
|
|
# vim: set et ts=2 sw=2 ai:
|