Niklas Korz

Results 69 comments of Niklas Korz

That works, amazing! :) Some icons seem to be missing though:

I installed it through Nix. In that regard, I guess it's good news the Tuba package in nixpkgs works without much modification, I only had to change the git commit...

So installing adwaita-icon-theme in my user profile (through Nix home manager) indeed makes them show up: Now I wonder how that could be handled in the package definition instead so...

I think it's perfectly fine that this depends on the user environment on Linux so it integrates nicely into the rest of the DE, but on macOS users will likely...

Is this something a first-time contributor without prior knowledge about Godot internals but with WebGPU experience could reallistically implement? I have taken a glimpse at the [D3D12](https://github.com/godotengine/godot/pull/70315) pull request and...

Just saw this in the `yarn.lock` pull request (#4): > If you get hash mismatches, the dependency probably is a native module or unplugged (has postinstall scripts). Install the Yarn...

I have already tried copying `./yarn.lock` to the build environment, i.e. ``` build = '' cp ${workspace/yarn.lock} ../../yarn.lock yarn build ''; ``` but this doesn't seem to change anything

Thanks for the information, I am trying to get https://github.com/prisma/prisma/ to work inside yarnpnp2nix. To be precise, `prisma generate` requires special handling and only works with `yarn pnpify`. I have...

I have solved this differently now, I'm generating the prisma client in a separate derivation without yarn / yarnpnp2nix: ``` prisma-client = pkgs.stdenv.mkDerivation { name = "prisma-client"; buildInputs = with...