Files
nix-config/hardening/nixpaks/modules/network.nix

9 lines
191 B
Nix

# https://github.com/nixpak/pkgs/blob/master/pkgs/modules/network.nix
{
etc.sslCertificates.enable = true;
bubblewrap = {
bind.ro = [ "/etc/resolv.conf" ];
network = true;
};
}