Updated readme
This commit is contained in:
@@ -85,10 +85,10 @@ nixarr = {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
Another example where port forwarding is not an option. This could be for
|
Another example where port forwarding is not an option. This could be useful
|
||||||
example if you're living in a dorm:
|
for example if you're living in a dorm without access to port forwarding:
|
||||||
|
|
||||||
```nix{.numberLines}
|
```nix {.numberLines}
|
||||||
nixarr = {
|
nixarr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
@@ -120,49 +120,8 @@ nixarr = {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
## Todo
|
## VPN
|
||||||
|
|
||||||
### Documentation
|
It's recommended that the VPN you're using has support for port forwarding. I
|
||||||
|
suggest [AirVpn](https://airvpn.org/), since they accept Monero, but you can
|
||||||
Add a wiki with documentation and guides.
|
use whatever you want.
|
||||||
|
|
||||||
### DDNS
|
|
||||||
|
|
||||||
Add DDNS-support.
|
|
||||||
|
|
||||||
- [ ] Njalla
|
|
||||||
|
|
||||||
### State Directories
|
|
||||||
|
|
||||||
- [x] Jellyfin: Works
|
|
||||||
- [x] Prowlarr: Works
|
|
||||||
- [x] Sonarr: Works
|
|
||||||
- [x] Radarr: Works
|
|
||||||
- [x] Lidarr: Works
|
|
||||||
- [x] Readarr: Works
|
|
||||||
- [ ] Transmission: Works for VPN, get weird bug, if
|
|
||||||
`services.transmission.dataDir` is set.
|
|
||||||
|
|
||||||
### Buildarr
|
|
||||||
|
|
||||||
Using buildarr would allow setup services to integrate with each other upon
|
|
||||||
activation with no user input, definitely nice.
|
|
||||||
|
|
||||||
Needs to be added to nixpkgs, not too hard, but is not worth it if the
|
|
||||||
project is abandoned.
|
|
||||||
|
|
||||||
- [ ] Package with nix
|
|
||||||
- [ ] Add to nixpkgs
|
|
||||||
|
|
||||||
### DNS leaks
|
|
||||||
|
|
||||||
Prevent DNS leaks _without using containerization,_ as is currently done. No
|
|
||||||
idea how this could be done, but would simplify things _a lot_.
|
|
||||||
|
|
||||||
### cross-seed
|
|
||||||
|
|
||||||
Create support for the [cross-seed](https://github.com/cross-seed/cross-seed) service.
|
|
||||||
|
|
||||||
- [ ] Package with nix
|
|
||||||
- [ ] Create nix service daemon
|
|
||||||
- [ ] Add to nixpkgs
|
|
||||||
|
|||||||
@@ -106,7 +106,8 @@ footer .content {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.content-wrap {
|
.content-wrap {
|
||||||
padding-bottom: 2.5rem;
|
padding-bottom: 4rem;
|
||||||
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|||||||
+3
-1
@@ -52,7 +52,9 @@ in pkgs.stdenv.mkDerivation {
|
|||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
sed '/^`[^`]*`$/s/`\(.*\)`/```nix\n\1\n```/g' "$tmpdir"/1.md > "$tmpdir"/2.md
|
sed '/^`[^`]*`$/s/`\(.*\)`/```nix\n\1\n```/g' "$tmpdir"/1.md > "$tmpdir"/2.md
|
||||||
# Remove bottom util-nixarr options
|
# Remove bottom util-nixarr options
|
||||||
sed '/util-nixarr/,$d' "$tmpdir"/2.md > "$tmpdir"/done.md
|
sed '/util-nixarr/,$d' "$tmpdir"/2.md > "$tmpdir"/3.md
|
||||||
|
# Make h2 header to h3
|
||||||
|
sed 's/^##/###/g' "$tmpdir"/3.md > "$tmpdir"/done.md
|
||||||
|
|
||||||
pandoc \
|
pandoc \
|
||||||
--standalone \
|
--standalone \
|
||||||
|
|||||||
Reference in New Issue
Block a user