mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
10 lines
225 B
Nix
10 lines
225 B
Nix
{...}: {
|
|
networking = {
|
|
hostName = "artemis";
|
|
networkmanager.enable = true;
|
|
firewall.enable = true;
|
|
firewall.allowPing = true;
|
|
enableIPv6 = false;
|
|
nameservers = ["9.9.9.9" "149.112.112.112"];
|
|
};
|
|
}
|