dots/nixcfgs/hardening/nixpaks/modules/network.nix
2026-03-21 22:15:44 +00:00

8 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;
};
}