summaryrefslogtreecommitdiff
path: root/hosts/common/systemd.nix
blob: 86fea4ac3b676701e310f5bfa3f94fd8f669cebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{wsl, ...}: {
  services = {
    journald.extraConfig = ''
      MaxRetentionSec=1w
    '';
    resolved = {
      enable = !wsl;
      dnssec = "allow-downgrade";
      extraConfig = ''
        [Resolve]
        DNS=1.1.1.1 1.0.0.1
        DNSOverTLS=yes
      '';
    };
  };
}