Created
September 25, 2013 11:36
-
-
Save qknight/6698423 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networking = { | |
hostName = "nix9000"; # Define your hostname. | |
wireless.enable = false; # Enables Wireless. | |
bridges = { | |
br0 = { | |
interfaces = [ "enp4s0" ]; | |
}; | |
}; | |
firewall = { | |
enable = true; | |
allowPing = true; | |
allowedTCPPorts = [ 22 80 445 5001 20202 ]; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment