Evan Relf
Evan Relf
Yeah I guess you're right 😆 You could improve the situation a little by avoiding the grayscale colors where possible. For example, if you look at the second help message...
@sergeysova Command+Shift+/
FWIW the function posted above has worked fine for me. My graphs have thousands of vertices and tens of thousands of edges, though that's probably small.
I ended up switching to https://github.com/ipetkov/crane to work around this issue.
I've also tried other tweaks without any luck: Changing the derived typeclass monad ```diff -, MonadReader (BoundedChan m String) +, MonadReader (BoundedChan (AppM m) String) ``` ```text boundedchan.hs:24:7: error: •...
@pecigonzalo Did you need to configure anything else in `/etc/nix/nix.conf` or elsewhere to get `x86_64-darwin` builds working? I'm getting this error when trying to build x86-64 packages: ``` error: a...
I figured it out: you have to specify `--system x86_64-darwin` at the command-line and then it builds fine. Also I added `aarch64-darwin` to `extra-platforms` like you mentioned, for whatever it's...
Yeah sorry, I wasn't clear. I have a different workflow. I'm `nix-build`ing a `pkgs.buildEnv` derivation, and it was failing on the x86-64 builds until I re-ran the build with the...
@kubukoz You can technically do this: ```nix pkgsFinal: pkgsPrev: { x86_64-darwin = import pkgsFinal.path { system = "x86_64-darwin"; inherit (pkgsFinal) config overlays; }; } ``` But it gets tricky very...
@kubukoz For a more concrete/practical example, I do something similar to this in my dotfiles. - [Here](https://github.com/evanrelf/dotfiles/blob/010ab9fea4a9695d25ed0526aa7d53c23caca79f/flake.nix#L47-L50) I define the overlay to provide packages for other `system`s. - [Here](https://github.com/evanrelf/dotfiles/blob/main/modules/machines/ultraviolet.nix#L43-L52) I...