diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-06-29 01:43:37 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-06-29 01:43:37 +0300 |
commit | 31ab954db3dbc0a07e7b58c59da003088ee7943d (patch) | |
tree | 774b3cc777d537c33475255b4bb0eb190fefd2ba /modules/common | |
parent | 2024-06-27 (diff) |
2024-06-29
Diffstat (limited to '')
-rw-r--r-- | modules/common/networking.nix | 7 | ||||
-rw-r--r-- | modules/common/systemd.nix | 23 |
2 files changed, 24 insertions, 6 deletions
diff --git a/modules/common/networking.nix b/modules/common/networking.nix index e891e58..2867825 100644 --- a/modules/common/networking.nix +++ b/modules/common/networking.nix @@ -28,11 +28,14 @@ in # Remove default hostname mappings. This is required at least by the # current implementation of the monitoring module. hosts = { - "127.0.0.1" = mkForce [ ]; + "127.0.0.2" = mkForce [ ]; "::1" = mkForce [ ]; }; - nameservers = mkDefault dns.const.quad9.default; + nameservers = with my.configurations.manwe.wireguard; [ + ipv4.address + ipv6.address + ]; useDHCP = false; diff --git a/modules/common/systemd.nix b/modules/common/systemd.nix index aac1647..81df05c 100644 --- a/modules/common/systemd.nix +++ b/modules/common/systemd.nix @@ -1,4 +1,10 @@ -{ config, pkgs, ... }: +{ + config, + pkgs, + lib, + ... +}: +with lib; { ark = { files = [ "/etc/machine-id" ]; @@ -16,9 +22,18 @@ }; }; - services.journald.extraConfig = '' - SystemMaxUse=5G - ''; + services = { + resolved = { + llmnr = "false"; + dnsovertls = "opportunistic"; + domains = mapAttrsToList (_: v: v) my.domain; + fallbackDns = map (v: "${v}#dns.quad9.net") dns.const.quad9.default; + }; + + journald.extraConfig = '' + SystemMaxUse=5G + ''; + }; systemd = let |