WIP: Remove blobs and split website in another repository #186

Closed
rarias wants to merge 458 commits from remove-website into old-master
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 8dff45903f - Show all commits

View File

@@ -9,6 +9,7 @@
./gitlab-runner.nix
./monitoring.nix
./net.nix
./nfs.nix
./overlays.nix
./slurm.nix
./ssh.nix

9
nfs.nix Normal file
View File

@@ -0,0 +1,9 @@
{ ... }:
{
services.nfs.server.enable = true;
services.nfs.server.exports = ''
/nix 10.0.40.0/24(ro,sync,no_subtree_check,root_squash)
'';
networking.firewall.allowedTCPPorts = [ 2049 ];
}