summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2023-05-02 21:59:03 +0200
committerChristoph Cullmann <cullmann@kde.org>2023-05-02 21:59:03 +0200
commit580646e6442352bb581cdd8a7bba6b15456d526e (patch)
tree3ea06f052f6a7fe165a94802fe02e72f6dfe88ec
parente522dfefd3771922a53b451f66dab3dd74cf6461 (diff)
block some crap, see https://github.com/StevenBlack/hosts#nixos
-rw-r--r--common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/common.nix b/common.nix
index 70ae589..fe0349e 100644
--- a/common.nix
+++ b/common.nix
@@ -130,6 +130,12 @@ in
StateDirectory = "dnscrypt-proxy";
};
+ # block some crap, see https://github.com/StevenBlack/hosts#nixos
+ networking.extraHosts = let
+ hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
+ hostsFile = builtins.fetchurl hostsPath;
+ in builtins.readFile "${hostsFile}";
+
# swap to RAM
zramSwap.enable = true;