formatting + organizing

This commit is contained in:
mjallen18
2024-07-24 21:43:55 -05:00
parent 4b4b419873
commit c5a9ff512c
20 changed files with 744 additions and 652 deletions

66
hosts/nas/networking.nix Normal file
View File

@@ -0,0 +1,66 @@
{
inputs,
outputs,
config,
lib,
pkgs,
...
}:
let
hostname = "jallen-nas";
ipAddress = "10.0.1.18";
gateway = "10.0.1.1";
ssid = "Joeys Jungle";
password = "kR8v&3Qd";
allowedPorts = [
2342
3493
61208
9090
# config.services.tailscale.port
# 22
];
in
{
# Networking configs enp7s0
networking = {
hostName = hostname;
hostId = "4b501480";
# Enable Network Manager
networkmanager.enable = false;
interfaces = {
wlp6s0.ipv4.addresses = [
{
address = ipAddress;
prefixLength = 24;
}
];
};
defaultGateway.address = gateway;
nameservers = [ gateway ];
wireless = {
enable = true;
networks = {
ssid = {
psk = password;
};
};
};
firewall = {
enable = true;
allowPing = true;
extraCommands = "iptables -t raw -A OUTPUT -p udp -m udp --dport 137 -j CT --helper netbios-ns"; # TODO is this needed?
allowedTCPPorts = allowedPorts;
allowedUDPPorts = allowedPorts;
# always allow traffic from your Tailscale network
trustedInterfaces = [ "tailscale0" ];
};
};
}