···8Recently I stumbled upon [Fly.io](https://fly.io/)'s [Sprites](https://sprites.dev/).
910[Tangled](https://tangled.org/) uses [nix](https://nixos.org/download) (the package manager)
11-and since I had my development setup for Tangled in a docker container(TODO: add footnote) it was a good excuse to play around with them.
1213## How to install
14···26 --args /nix/var/nix/profiles/default/bin/nix-daemon
27```
2829-That's all. Yep.
03031## Errors I encountered
32···50You can verify this with `ls -la /nix/var/nix/daemon-socket/socket`. The owner should be `root` (not `sprite`).
5152To fix this, make sure you started the daemon with `sudo`.
00
···8Recently I stumbled upon [Fly.io](https://fly.io/)'s [Sprites](https://sprites.dev/).
910[Tangled](https://tangled.org/) uses [nix](https://nixos.org/download) (the package manager)
11+and since I had my development setup for Tangled in a docker container[^1] it was a good excuse to play around with them.
1213## How to install
14···26 --args /nix/var/nix/profiles/default/bin/nix-daemon
27```
2829+Aaaand that's it. Easy, right?
30+Well, I ran into some issues, which I will cover in the next section, so that you don't have to.
3132## Errors I encountered
33···51You can verify this with `ls -la /nix/var/nix/daemon-socket/socket`. The owner should be `root` (not `sprite`).
5253To fix this, make sure you started the daemon with `sudo`.
54+55+[^1]: Don't ask.