Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 8fe301203c - 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 ];
}