pvv-nixos-config/base/networking.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
375 B
Nix
Raw Normal View History

2024-08-31 22:23:09 +02:00
{ lib, values, ... }:
{
2024-09-28 21:28:26 +02:00
systemd.network.enable = true;
2024-08-31 22:23:09 +02:00
networking.domain = "pvv.ntnu.no";
networking.useDHCP = false;
2024-09-28 21:28:26 +02:00
# The rest of the networking configuration is usually sourced from /values.nix
2024-08-31 22:23:09 +02:00
services.resolved = {
enable = lib.mkDefault true;
dnssec = "false"; # Supposdly this keeps breaking and the default is to allow downgrades anyways...
};
2024-09-28 21:28:26 +02:00
}