Jake Hamilton

Results 28 comments of Jake Hamilton

@iopq I think you may be missing the `specialArgs` attribute in your flake's calls to nixosSystem. You should have something like: ``` nixosConfigurations.nixie-tube = nixpkgs.lib.nixosSystem { system = "..."; modules...

@Zahrun can you share your full configuration file(s)? Garbage collection will only remove packages that don't have a gc root. If you're installing the package in your NixOS configuration it...

@Zahrun I wonder if setting `keep-outputs` in your `nix.conf` is the answer? ```nix { nix.settings.keep-outputs = true; } ``` https://nixos.org/manual/nix/unstable/command-ref/conf-file.html#conf-keep-outputs

@nielsvanvelzen and @thornbill thanks for taking the time to give feedback & review! I think you make some very good points and I was also wondering about layout or even...

@VladTheSheep thank you for reporting this! I originally took the stylesheet from one of the other themes (a light one). I must have missed that part which explains why the...

One additional benefit from a text-based format is the ability for a tool like [Nix](https://nixos.org) to parse it and pull dependencies for reproducible builds. Bun's largest pain point for me...

> It is problem to use jsonc parser at nix? Yes, Nix only includes a standard JSON parser builtin.

> they should include JSONC parser too > > trailing comas is important to prevent useless merge conflicts > > also configs should be in JSONC > > i wait...