13 lines
No EOL
294 B
Nix
13 lines
No EOL
294 B
Nix
{ modulesPath, config, pkgs, lib, self, ... }:
|
|
{
|
|
networking = {
|
|
hostName = "creatorforge"; # Define your hostname.
|
|
useDHCP = lib.mkForce true;
|
|
firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [];
|
|
allowedUDPPorts = [];
|
|
checkReversePath = "loose";
|
|
};
|
|
};
|
|
} |