challenger: Re-enable nvidia, various fixes. NFS still broken :(

This commit is contained in:
2024-10-21 23:24:47 +02:00
parent 5fed94ef27
commit 3ddb78788b
3 changed files with 22 additions and 13 deletions

View File

@@ -1,12 +1,21 @@
{ config, pkgs, lib, ... }:
{
# Enable nfs4 only
services.nfs.server = {
enable = true;
exports = ''
''; # TODO
fileSystems = {
"/export/riker-backup" = {
device = "/tank/backup/riker";
options = [ "bind" ];
};
};
# Enable nfs4 only
# services.nfs.server = {
# enable = true;
# exports = ''
# /export 192.168.10.67(rw,fsid=0,no_subtree_check)
# /export/riker-backup 192.168.10.67(rw,nohide,no_subtree_check,no_root_squash)
# '';
# };
networking.firewall.allowedTCPPorts = [ 111 2049 20048 ];
networking.firewall.allowedUDPPorts = [ 111 20048];
}