We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd24a5 commit f5020b0Copy full SHA for f5020b0
system/linux/network.nix
@@ -2,11 +2,18 @@
2
{
3
networking = {
4
useNetworkd = true;
5
- firewall.enable = false;
6
# this is overridden by NetworkManager on workstations
7
useDHCP = lib.mkDefault true;
8
# this is not compatible with networkd
9
useHostResolvConf = false;
+ # firewall currently disabled as not completely configured
10
+ firewall = {
11
+ enable = false;
12
+ trustedInterfaces = [
13
+ # libvirt uses iptables directly
14
+ "virbr0"
15
+ ];
16
+ };
17
};
18
19
services.firewalld.enable = config.networking.firewall.enable;
0 commit comments