We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad09b2 commit efac82eCopy full SHA for efac82e
nixos-modules/host/default.nix
@@ -37,20 +37,17 @@ in
37
inherit group;
38
};
39
40
- security.pam.loginLimits = [
41
- {
42
- domain = "${user}";
43
- item = "memlock";
44
- type = "hard";
45
- value = "infinity";
46
- }
47
48
49
50
- type = "soft";
51
52
53
- ];
+ security.pam.loginLimits = [ {
+ domain = user;
+ item = "memlock";
+ type = "hard";
+ value = "infinity";
+ } {
+ type = "soft";
+ } ];
54
55
systemd.services = builtins.foldl' (result: name: result // (
56
let
0 commit comments