mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-30 14:21:51 +02:00
* feat: hardening nixos desktops * refactor: move hardening to the root folder * feat: add nixpaks into nixpkgs via overlays * feat: nixpak - add netease music * docs: hardening * fix: nvidia * fix: disable apparmor & hardening profile to avoid neovim being killed * fix: firefox cursor & fonts
9 lines
189 B
Nix
9 lines
189 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;
|
|
};
|
|
}
|