Add catch-all vhosts config

This commit is contained in:
Greg Hellings
2022-04-11 09:38:00 -05:00
parent a82604f274
commit a7fe8a3532
2 changed files with 30 additions and 8 deletions
+9 -8
View File
@@ -1,12 +1,13 @@
{ config, pkgs, ... }:
{
imports = [
./networking.nix
./dnsmasq.nix
./home-assistant.nix
../../profiles/rpi4.nix
../../profiles/home.nix
];
networking.hostName = "2maccabees";
imports = [
./networking.nix
./dnsmasq.nix
./home-assistant.nix
./vhosts.nix
../../profiles/rpi4.nix
../../profiles/home.nix
];
networking.hostName = "2maccabees";
}