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