infrastructure/hosts/hydrogen/system/networking/default.nix
2023-12-15 16:18:36 +01:00

22 lines
413 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"];
# TODO: bouger ça à côté des applications
firewall = {
allowedTCPPorts = [
624 # ssh
80 # http
443 # https
];
};
};
}