* Bump the open file limit for everybody.
svn path=/configurations/trunk/tud/; revision=28490
root committed
Aug 11, 2011 at 12:32 UTC
22d5c58185bcfd753e1cee84573193ab3726535c
1 file changed
+6
common.nix
+6
@@ -40,4 +40,10 @@
40
hostName = "smtp.tudelft.nl";
41
domain = "st.ewi.tudelft.nl";
42
};
43
+
44
+ # Bump the open files limit so that non-root users can run NixOS VM
45
+ # tests (Samba opens lot of files).
46
+ security.pam.loginLimits =
47
+ [ { domain = "*"; item = "nofile"; type = "-"; value = "16384"; }
48
+ ];
49
}