summaryrefslogtreecommitdiff
path: root/modules/root/hosts.nix
blob: b9f9d6edd200c65f8dd2335f0517bd0ef795f295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ hostname, ... }: {
	networking.hostName = hostname;  # From flake.nix
	networking.hosts = {
		"192.168.1.9"   = [ "optiplex" ];
		"192.168.1.30"  = [ "localgit" ];
		"192.168.1.11"  = [ "truenas-home" ];
		"192.168.77.11" = [ "truenas-office" ];
		"192.168.77.8"  = [ "publicgit" "tjkeller" ];
		"192.168.77.3"  = [ "devel" ];
		"173.9.253.3"   = [
			"git.tjkeller.xyz"
			"piped.tjkeller.xyz"
			"search.tjkeller.xyz"
			"tjkeller.xyz"
		];
	};
}