tangled
alpha
login
or
join now
isabelroses.com
/
dotfiles
my over complex system configurations
dotfiles.isabelroses.com/
nixos
nix
flake
dotfiles
linux
10
fork
atom
overview
issues
pulls
pipelines
darwin/security/firewall: use updated options
isabelroses.com
7 months ago
a9ce2d99
6f4fe66b
+7
-6
1 changed file
expand all
collapse all
unified
split
modules
darwin
security
firewall.nix
+7
-6
modules/darwin/security/firewall.nix
···
1
1
{
2
2
-
system.defaults.alf = {
3
3
-
allowdownloadsignedenabled = 0;
4
4
-
allowsignedenabled = 1;
5
5
-
globalstate = 0;
6
6
-
loggingenabled = 0;
2
2
+
networking.applicationFirewall = {
3
3
+
enable = true;
4
4
+
blockAllIncoming = false;
5
5
+
6
6
+
allowSignedApp = false;
7
7
+
allowSigned = true;
7
8
8
9
# Apple menu > System Preferences > Security and firewall
9
10
# Drops incoming requests via ICMP such as ping requests. Default is 0.
10
10
-
stealthenabled = 1;
11
11
+
enableStealthMode = true;
11
12
};
12
13
}