WIP: challenger: init new host

This commit is contained in:
2024-07-01 23:28:24 +02:00
parent f580bef7c1
commit 097ded10b5
7 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
# Enable nfs4 only
services.nfs.server = {
enable = true;
exports = ''
''; # TODO
};
networking.firewall.allowedTCPPorts = [ 111 2049 20048 ];
networking.firewall.allowedUDPPorts = [ 111 20048];
}