mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-04-03 12:51:23 +02:00
18 lines
619 B
Nix
18 lines
619 B
Nix
{ lib, values, ... }:
|
|
{
|
|
systemd.network.enable = true;
|
|
networking.domain = "pvv.ntnu.no";
|
|
networking.useDHCP = false;
|
|
# networking.search = [ "pvv.ntnu.no" "pvv.org" ];
|
|
# networking.nameservers = lib.mkDefault [ "129.241.0.200" "129.241.0.201" ];
|
|
# networking.tempAddresses = lib.mkDefault "disabled";
|
|
# networking.defaultGateway = values.hosts.gateway;
|
|
|
|
# The rest of the networking configuration is usually sourced from /values.nix
|
|
|
|
services.resolved = {
|
|
enable = lib.mkDefault true;
|
|
dnssec = "false"; # Supposdly this keeps breaking and the default is to allow downgrades anyways...
|
|
};
|
|
}
|