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