nixos/samba: increase LimitNOFILE to recommended value (#32085)

fixes warning:

    rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)

https://serverfault.com/a/641411
This commit is contained in:
David Kleuker 2017-12-14 18:12:44 +01:00 committed by Joachim F
parent fbc452c836
commit ffc0bfa5b7

View File

@ -56,6 +56,7 @@ let
serviceConfig = {
ExecStart = "${samba}/sbin/${appName} ${args}";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
LimitNOFILE = 16384;
Type = "notify";
};