modularized hosts creatorforge.nix
This commit is contained in:
parent
38d653d2ff
commit
43ed213a93
14 changed files with 146 additions and 123 deletions
13
hosts/creatorforge/networkd.nix
Normal file
13
hosts/creatorforge/networkd.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ modulesPath, config, pkgs, lib, self, ... }:
|
||||
{
|
||||
networking = {
|
||||
hostName = "creatorforge"; # Define your hostname.
|
||||
useDHCP = lib.mkForce true;
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [];
|
||||
allowedUDPPorts = [];
|
||||
checkReversePath = "loose";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue