infrastructure/hosts/hydrogen/system/networking/default.nix
Laureηt 752d0a1ad1
🎨 (hydrogen) declare the firewall's allowedTCPPorts in the services
(openssh's port is automatically opened by the module)
2023-12-30 18:32:58 +01:00

13 lines
247 B
Nix

{...}: {
networking = {
# the name of the machine
hostName = "hydrogen";
# the domain used for the machine
domain = "fainsin.bzh";
# domain name servers, use clouflare family
nameservers = ["1.1.1.2" "1.0.0.2"];
};
}