summary refs log tree commit diff
path: root/host/Rory-nginx/services/containers/draupnir-cme/root.nix
blob: 0ebce9ef2f05b1b2c227f07ba9faa6133a491ac5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  networking.useHostResolvConf = true;

  networking.hosts = {
    "192.168.100.1" = [
      "matrix.rory.gay"
      "rory.gay"
    ];
  };

  networking.firewall = {
    enable = true;
  };
}