This commit is contained in:
Christoph Cullmann 2023-05-02 21:59:03 +02:00
parent e522dfefd3
commit 580646e644

View file

@ -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;