Lars Jellema
Lars Jellema
Nixfmt intentionally throws the choice between literal tab characters and escape codes away because it ensures semantically identical strings get formatted the same way. It uses heuristics in order to...
Ah, whoops, I broke `nixfmt` without arguments.
That should fix that.
I agree with using `safe-exceptions` and adding an example like `nixfmt $(readlink -f $(find -name '*.nix'))`. Don't have time for it right now though, feel free to fix them and...
Moving the comment before the `in` is intentional and currently the only case where comments are moved. The fact that it gets indented is not intentional and is something that...
I just ran into the same thing, but using qemu on a machine with plenty of RAM. I'm guessing rather running out of memory it's running out of address space...
For reference, I'm using qemu user mode emulation so there's no VM. I haven't been able to find information about any memory limits that apply to user mode emulation. The...
I found the likely reason: The man page of mmap describes the MAP_32BIT flag as follows: > Put the mapping into the first 2 Gigabytes of the process address space....
That does seem to help a lot. But it can't help me debug a systemd service that fails immediately and I'm not sure if it can replicate all parts of...
I found the `systemd-run --shell` option but I don't see any option in the manual to base the environment on an existing service. For clarity, I do not mean just...