nixos-config/networks/fudo.org.nix
2019-12-25 17:20:36 -06:00

28 lines
485 B
Nix

{ config, pkgs, ... }:
{
config.time.timeZone = "America/Winnipeg";
config.services.cron = {
mailto = "admin@fudo.org";
};
config.networking = {
domain = "fudo.org";
search = ["fudo.org"];
firewall.enable = false;
networkmanager.enable = pkgs.lib.mkForce false;
defaultGateway = "208.81.3.113";
nameservers = [ "1.1.1.1" "208.81.7.14" "2606:4700:4700::1111" ];
};
config.services.prometheus.exporters = {
node.enable = true;
};
}