Results 108 comments of Naser Aleisa

The workaround shown in #247 is great, it solved my flake issues. The build passes and the container starts. When it comes to sops-nix, however, that still doesn't quite work....

@KiaraGrouwstra Yup that works. Thanks for the hint! ```nix { service.privileged = true; service.volumes = [ "${toString ./.}/keys.txt:/var/lib/secrets/age" ]; } ``` --- It also works if we only grant it...

I'm still not sure exactly _why_ the container needs to be privileged, the best I have so far is this similar discussion in the nix repo: https://github.com/NixOS/nix/issues/3059 --- After searching...

Something like this: ```nix { project.name = "nixos container"; services.webserver = { pkgs, lib, ... }: { service.volumes = [ "${toString ./.}/keys.txt:/var/lib/secrets/age" ]; nixos.useSystemd = true; service.useHostStore = true; nixos.configuration...

We can close this ticket as youplot is now available on both homebrew and [nix](https://github.com/red-data-tools/YouPlot/issues/35#issuecomment-2186178096) ([registry](https://search.nixos.org/packages?channel=unstable&show=youplot&from=0&size=50&sort=relevance&type=packages&query=youplot)).

Unable to set the port through an environment variable is painful. The current workaround for this issue is to manually duplicate these values (e.g. `$SUPABASE_API_PORT` now needs to be explicitly...

Another minimal repro here: https://github.com/thenbe/repro-eslint-svelte-typecheck ### Reproduction steps 1. Clone and `pnpm install` 1. Run: `pnpm eslint src/routes/+page.svelte` Expected: We should get no eslint errors. Actual: We get two eslint...

> A workaround is to import the offending type explicitly I wasn't sure how to apply this workaround to the minimal repro posted in the [comment](https://github.com/sveltejs/eslint-plugin-svelte/issues/413#issuecomment-2171792878) above. The issue that...

One option we have for documenting API options is the use of tools like [typedoc](https://github.com/TypeStrong/typedoc), [docs-ts](https://github.com/gcanti/docs-ts), etc. The main reason they appeal to me is that they unlock the ability...

@lachlancollins In this test, should we expect the text to be `Error: undefined`? Svelte seems to render `{undefined}` (an undefined value in a mustache tag) to a blank string instead...