rtl, clightning-rest: update to nodejs 18
16 is no longer supported by NixOS 23.05. 18 is the latest LTS version.
This commit is contained in:
parent
03fb70efa4
commit
bd77b89fea
4 changed files with 15 additions and 11 deletions
|
|
@ -41,8 +41,12 @@ let self = {
|
|||
RestrictAddressFamilies = self.defaultHardening.RestrictAddressFamilies + " AF_NETLINK";
|
||||
};
|
||||
|
||||
# nodejs applications require memory write execute for JIT compilation
|
||||
nodejs = { MemoryDenyWriteExecute = false; };
|
||||
nodejs = {
|
||||
# Required for JIT compilation
|
||||
MemoryDenyWriteExecute = false;
|
||||
# Required by nodejs >= 18
|
||||
SystemCallFilter = self.defaultHardening.SystemCallFilter ++ [ "@pkey" ];
|
||||
};
|
||||
|
||||
# Allow takes precedence over Deny.
|
||||
allowLocalIPAddresses = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue