nix/host/home/Network.nix

12 lines
208 B
Nix
Raw Normal View History

2024-03-29 09:05:08 +03:00
{ ... }: {
networking.networkmanager.insertNameservers = [
"1.1.1.1"
"8.8.8.8"
];
networking.extraHosts = ''
10.1.0.2 git.voronind.com
10.1.0.2 iot.voronind.com
10.1.0.2 pass.voronind.com
'';
}