feat(adho): Configure larger local POSIX queue sizes

Required for some testing at work.
This commit is contained in:
Vincent Ambo 2017-10-20 20:22:51 +02:00
parent 2d80f468d0
commit 19f165484b

View file

@ -28,4 +28,10 @@
};
hardware.bluetooth.enable = true;
# Configure POSIX queue limits (for work)
systemd.tmpfiles.rules = let mqueue = "/proc/sys/fs/mqueue"; in [
"w ${mqueue}/msgsize_max - - - - ${toString (64 * 1024)}"
"w ${mqueue}/msg_max - - - - 50"
];
}