Define the domain for the whole file

This commit is contained in:
Andreas Zweili 2022-11-02 21:28:05 +01:00
parent 4d71c0bb83
commit 051e4ae3d5
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
{ custom, hostname, inputs, pkgs, ... }:
let
domain = "ttrss.2li.ch";
in
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
@ -6,7 +9,7 @@
inherit hostname inputs;
})
(import "${inputs.self}/modules/nginx-proxy" {
domain = "ttrss.2li.ch"; inherit inputs;
inherit domain inputs;
})
(import "${inputs.self}/modules/restic-server-mysql-client" {
time = "23:00"; inherit custom hostname inputs pkgs;