14 lines
204 B
Nix
Executable File
14 lines
204 B
Nix
Executable File
{config, ...}:
|
|
{
|
|
networking = {
|
|
useDHCP = false;
|
|
hostName = "Remilia";
|
|
firewall.allowedTCPPorts = [ 22 80 ];
|
|
interfaces = {
|
|
ens3 = {
|
|
useDHCP = true;
|
|
};
|
|
};
|
|
};
|
|
}
|