Files
nixos-dots/system/network.nix
zastian@mrthoddata.com 9738b3a61e ipv6 v2 final form
2025-08-27 15:50:25 +01:00

63 lines
1.4 KiB
Nix
Executable File

{
config,
lib,
pkgs,
systemName,
...
}:
{
networking = {
# Define hostname based on system type
hostName = lib.mkMerge [
(lib.mkIf (systemName == "laptop") "mrfluffyLaptop")
(lib.mkIf (systemName == "pc") "mrfluffyPC")
];
# Firewall configuration
firewall = {
# Open ports in the firewall.
# allowedTCPPorts = [ ... ];
# allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
enable = false;
checkReversePath = false;
};
# Networking options
# Pick only one of the below networking options.
# wireless.enable = true; # Enables wireless support via wpa_supplicant.
networkmanager = {
enable = true; # Easiest to use and most distros use this by default.
dns = "none";
};
# DHCP settings
useDHCP = false;
dhcpcd.enable = false;
# IPv6 configuration
enableIPv6 = true;
# Configure network proxy if necessary
# proxy.default = "http://user:password@proxy:port/";
# proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Hosts and DNS configuration
extraHosts = ''
127.0.0.0 localhost
'';
nameservers = [
"192.168.1.1"
"2001:bb6:5022:4b00:2e0:1dff:fef8:68cb"
];
search = [
"localdomain"
"local"
];
# # environment.etc = {
# # "resolv.conf".text = "nameserver 192.168.1.180\noptions edns0 trust-ad\nsearch home\n";
# # };
};
}