We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679c7e3 commit 0bdd60cCopy full SHA for 0bdd60c
docs/manual/install.md
@@ -20,20 +20,25 @@ Copy and paste the following code in a terminal session.
20
curl -fsSL fuckingnode.github.io/install.sh | bash
21
```
22
23
-### NixOS
+### Nix / NixOS
24
+
25
+!!! warning
26
+ ARM (`aarch64-linux`) support is available, but NOT tested!
27
28
Add the repo to your `flake.nix`.
29
30
```nix
31
inputs = {
32
+ ...
33
fuckingnode.url = "github:FuckingNode/FuckingNode";
-}
34
35
+};
36
37
38
Then, add this to your system packages:
39
40
-inputs.fuckingnode.packages."${pkgs.system}".default
41
+inputs.fuckingnode.packages."${pkgs.system}".default;
42
43
44
## Compile from source
0 commit comments