{ config, lib, pkgs, ... }:

{
  config.fudo.sites = {
    seattle = {
      gateway-v4 = "10.0.0.1";
      nameservers = [ "10.0.0.1" ];
      timezone = "America/Los_Angeles";
      gateway-host = "nostromo";
      # FIXME: good idea?
      network-mounts = {
        "/mnt/documents" = {
          device = "whitedwarf:/volume1/Documents";
          fsType = "nfs4";
        };
        "/mnt/downloads" = {
          device = "whitedwarf:/volume1/Downloads";
          fsType = "nfs4";
        };
        "/mnt/music" = {
          device = "doraemon:/volume1/Music";
          fsType = "nfs4";
        };
        "/mnt/video" = {
          device = "doraemon:/volume1/Video";
          fsType = "nfs4";
        };
        "/mnt/cargo_video" = {
          device = "cargo:/volume1/video";
          fsType = "nfs4";
        };
        "/mnt/photo" = {
          device = "cargo:/volume1/pictures";
          fsType = "nfs4";
        };
      };
    };

    portage = {
      gateway-v4 = "208.81.3.113";
      # gateway-v6 = "265:e200:d200:1::1";
      nameservers = [ "1.1.1.1" "208.81.7.14" "2606:4700:4700::1111" ];
      timezone = "America/Winnipeg";
    };

    russell = {
      gateway-v4 = "10.0.0.1";
      nameservers = [ "10.0.0.1" ];
      timezone = "America/Winnipeg";
      gateway-host = "clunk";
    };

    joes-datacenter-0 = {
      gateway-v4 = "172.86.179.17";
      nameservers = [ "1.1.1.1" "2606:4700:4700::1111" ];
      timezone = "America/Winnipeg";
    };
  };
}