Nathan Henrie

Results 108 comments of Nathan Henrie

@Enzime unfortunately over the last 5 or so point releases I've gotten into the habit of just `rm`ing it (in contrast to the `mv` in my post above), so I'm...

I thought this might be because I have the "set timezone automatically" option checked, but it is not. It seems to work (successfully changes my system time) in spite of...

+1 -- also locks up my Pi 3b, and my Acer Chromebook, both of which are now happily running NixOS. EDIT: Looks like the `-r` flag should do this. I...

nix-index uses [rayon for parallelism](https://github.com/nix-community/nix-index/blob/3dbd1454abba9bbc94035813d6367b376e0bfb24/src/listings.rs#L9) After reading I thought perhaps this would work: ```bash $ RAYON_NUM_THREADS=1 nix-index ``` Unfortunately on my Pi4 (4gb ram) I eventually get: ``` $ RAYON_NUM_THREADS=2...

Thanks for your updates! - `Update to nixfmt-rfc-style` - I agree - Update flake.lock and inputs to reflect NixOS 23.11 being out. - I pinned in my original "use flakes"...

Thanks for a thorough response and explanations! I have no big issue with the callPackage stuff -- it is definitely the dominant paradigm, was mostly just questioning how useful the...

Thanks for the additional context @timokau. I will keep in mind your invitation -- thank you. I don't think I have the permissions required to "approve" the PR, as I'm...

Thanks for the repro on the 1,000 instances issue -- I'll tinker with that! I think I wasn't clear about `default.nix` -- my Q was whether the default.nix could be...

No worries -- I've just never used the old-style commands, so I thought `default.nix` was only for the `callPackage` pattern, but obviously it's not. https://nixos.org/manual/nix/unstable/command-ref/nix-build.html > If no paths are...

@philiptaron -- my attempt at an MRE is showing nearly twice as much memory consumption for `legacyPackages` as opposed to `import nixpkgs`, whereas I had expected something like 100x greater...