diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-07-29 06:54:49 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-07-29 06:54:49 -0500 |
| commit | e29dd8a2283399b7e046937340509d5aec4b52ba (patch) | |
| tree | aa679e70fe55cb620698ab1695eadf23f8a2cdba /modules/system/nixos/networking/default.nix | |
| parent | d2aecd69c17fa64305c07333686576152432993d (diff) | |
changes
Diffstat (limited to 'modules/system/nixos/networking/default.nix')
| -rw-r--r-- | modules/system/nixos/networking/default.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/system/nixos/networking/default.nix b/modules/system/nixos/networking/default.nix deleted file mode 100644 index f6baaac..0000000 --- a/modules/system/nixos/networking/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - imports = [ - ./resolved.nix - - ./networkd.nix - ./iwd.nix - ./wpasupplicant.nix - ]; - - networking = { - firewall = { - enable = true; - checkReversePath = "loose"; - }; - - # Disable default networking stuff - dhcpcd.enable = false; - useDHCP = false; - networkmanager.enable = false; - }; - - boot.kernel.sysctl = { - # disable all ipv6 - "net.ipv6.conf.all.disable_ipv6" = 1; - "net.ipv6.conf.default.disable_ipv6" = 1; - }; -} |
