summaryrefslogtreecommitdiff
path: root/hosts/glados/network.nix
blob: b80f0ae7c548d1f36b00909a273756f0c389887a (plain)
1
2
3
4
5
6
7
8
9
{config, ...}: {
	networking = {
		hostId = "$(head -c 8 /etc/machine-id)";
		networkmanager = {
			enable = true;
			dns = "systemd-resolved";
		};
	};
}