Updated docs

This commit is contained in:
rasmus-kirk
2024-08-08 10:16:31 +02:00
parent dd769cce96
commit 7ef3d63f5c
17 changed files with 153 additions and 151 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ example does the following:
outside your home network
- Runs all the supported "*Arrs"
**Warning:** This is largely untested ATM!
> **Warning:** This is largely untested ATM!
```nix {.numberLines}
nixarr = {
+1 -1
View File
@@ -37,7 +37,7 @@ up, of your server. This lets you access the services on `localhost:6001`
through `localhost:6007`. [Example 2](/wiki/examples/example-2) has an
example configuration for this.
**Warning:** Disable password authentication if you use SSH, it's insecure!
> **Warning:** Disable password authentication if you use SSH, it's insecure!
## Without Authentication
+5 -5
View File
@@ -8,7 +8,7 @@ config in `/nix/store` somewhere (_Not good!_). The way to solve this is to
keep your secrets in files and pass these to nix. Below, I will present two
ways of accomplishing this.
**Warning:** Do _not_ let secrets live in your configuration directory either!
> **Warning:** Do _not_ let secrets live in your configuration directory either!
## The simple way
@@ -37,10 +37,10 @@ And set the accompanying Nixarr option:
};
```
**Note:** This is "impure", meaning that since the file is not part of the nix
store, a nixos rollback will not restore a previous secret (not a big problem
if the secrets are not changed often). This also means you have to rebuild Nixos
using the `--impure` flag set.
> **Note:** This is "impure", meaning that since the file is not part of the nix
> store, a nixos rollback will not restore a previous secret (not a big problem
> if the secrets are not changed often). This also means you have to rebuild Nixos
> using the `--impure` flag set.
## Agenix - A Path to Purity
+2 -2
View File
@@ -46,8 +46,8 @@ through a VPN, then you could use the following configuration:
};
```
**Note:** that the submodule supports more namespaces than just one, but Nixarr
uses the name `wg`, so you should use that too.
> **Note:** that the submodule supports more namespaces than just one, but Nixarr
> uses the name `wg`, so you should use that too.
Services running over the VPN will have address `192.168.15.1` instead of
`127.0.0.1`. For more options and information on the VPN-submodule, check out