nix-configs/modules/net/hosts.nix

29 lines
520 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ ... }:
{
2025-03-27 20:18:54 +01:00
networking.hosts = {
"127.0.0.1" = [
"www.tiktok.com"
"www.twitter.com"
"www.instagram.com"
"www.facebook.com"
"www.snapchat.com"
"tiktok.com"
"twitter.com"
"instagram.com"
"facebook.com"
"snapchat.com"
2025-04-14 22:27:14 +02:00
"youtube.com"
"www.youtube.com"
2025-03-27 20:18:54 +01:00
"google-analytics.com"
"stats.g.doubleclick.net"
"googleadservices.com"
"googletagmanager.com"
"googletagservices.com"
"googlesyndication.com"
];
};
}