diff options
author | azahi <azat@bahawi.net> | 2024-10-21 15:39:18 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2024-10-21 15:39:18 +0300 |
commit | 2c03460ad97ed1d10415918e9ec53744e4f920dc (patch) | |
tree | 7f7f7438096b2981a39cc3f236e02f6258314624 /modules/common/networking.nix | |
parent | 2024-10-21 (diff) |
2024-10-21
Diffstat (limited to 'modules/common/networking.nix')
-rw-r--r-- | modules/common/networking.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/common/networking.nix b/modules/common/networking.nix index 2867825..1f0f97a 100644 --- a/modules/common/networking.nix +++ b/modules/common/networking.nix @@ -108,6 +108,13 @@ in }) ]; + services.resolved = { + llmnr = "false"; + dnsovertls = "opportunistic"; + fallbackDns = dns.const.quad9.default; + domains = [ my.domain.shire ]; + }; + environment = { shellAliases = listToAttrs ( map ({ name, value }: nameValuePair name "${pkgs.iproute2}/bin/${value}") [ |