0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

udev requires unix sockets and inotify

This commit is contained in:
Shea Levy 2012-08-06 17:02:35 -04:00
parent e66bcbd58a
commit 64d0069be3

View file

@ -263,6 +263,11 @@ in
'';
};
system.requiredKernelConfig = with config.lib.kernelConfig; [
(isEnabled "UNIX")
(isYes "INOTIFY_USER")
(isYes "NET")
];
};
}