mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
13 lines
210 B
Nix
13 lines
210 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
firewall.allowedUDPPorts = [ 8000 ];
|
|
firewall.allowedTCPPorts = [ 8000 ];
|
|
nameservers = [
|
|
"1.1.1.1"
|
|
"1.0.0.1"
|
|
];
|
|
};
|
|
}
|