mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
14 lines
245 B
Nix
14 lines
245 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"
|
|
];
|
|
};
|
|
}
|