| 29 Dec 2023 |
hexa | * can't listen to maja göpel and deal with this tbh 😄 | 19:59:46 |
@joepie91:pixie.town | not sure why this would necessitate giving the machine more memory | 20:00:11 |
@joepie91:pixie.town | it's a max heap size, not a fixed heap size | 20:00:17 |
Wanja Hentze | also, VMs can still both overcommit and swap, right? | 20:05:06 |
Wanja Hentze | In reply to @joepie91:pixie.town it's a max heap size, not a fixed heap size supposedly it really did run into the limit | 20:05:47 |
hexa | overcommit with ballooning? | 20:06:16 |
hexa | and swap only if I added some | 20:06:20 |
hexa | often enough heap space is locked, so I'm doubtful this would help | 20:06:43 |
Wanja Hentze | no just regular Linux overcommit | 20:08:58 |
Wanja Hentze | guessing that this is Linux | 20:09:07 |
hexa | oh, yeah sure | 20:09:12 |
Wanja Hentze | ballooning is another idea though | 20:09:18 |
Wanja Hentze | idk how hard that is in your VMM | 20:22:04 |
Wanja Hentze | libvirt/qemu/kvm can just do it | 20:22:17 |
| 30 Dec 2023 |
| raitobezarius changed their display name from raitobezarius (DECT 2128) to raitobezarius. | 19:53:17 |
| 2 Jan 2024 |
Mason Mackaman | do any of the current solutions support npm workspaces? | 14:08:28 |
Lily Foster | In reply to @platonic.mason:matrix.org do any of the current solutions support npm workspaces? buildNpmPackage does | 14:08:59 |
Mason Mackaman | is buildNpmPackage just a FOD? | 14:14:27 |
Mason Mackaman | yeah, I guess so. I suppose at this point that's probably the best option for me :/ | 14:22:20 |
Lily Foster | i mean fetchNpmDeps is a FOD fetcher but we'll have automatic FODs (for non-git-deps) from the lockfile Soon™️ | 14:57:22 |
Wanja Hentze | if there's anything I can do to help with that, lemme know 🫡 | 15:23:45 |
| 3 Jan 2024 |
@janne.hess:helsinki-systems.de | Does anyone have a working example to build a sharp dep? It wants libvips, pkg-config, python, node-gyp and is now trying to download the node headers | 13:29:54 |
Lily Foster | In reply to @janne.hess:helsinki-systems.de Does anyone have a working example to build a sharp dep? It wants libvips, pkg-config, python, node-gyp and is now trying to download the node headers pkgs-config in nativeBuildInputs and libvips in buildInputs should be enough when using buildNpmPackage, right? | 13:31:34 |
Lily Foster | buildNpmPackage sets up both node gyp and node header location in the config hook | 13:31:52 |
@janne.hess:helsinki-systems.de | In reply to @lily:lily.flowers
buildNpmPackage sets up both node gyp and node header location in the config hook ah damn it, I'm not using that :/ Is there a hook I can pull in? | 13:32:36 |
Lily Foster | npmHooks.npmConfigHook | 13:32:51 |
Lily Foster | if it's just a standard mkDerivation | 13:33:04 |
Lily Foster | that'll handle getting and building all deps | 13:33:13 |
Lily Foster | make sure you have a npmDeps = fetchNpmDeps { ... } too | 13:33:26 |
@janne.hess:helsinki-systems.de | I can try, thank you :) I'm currently using a custom FOD because I have to use an awful stack of yarn berry, nextjs, turborepo, … | 13:34:53 |