Updated readme

This commit is contained in:
rasmus-kirk
2024-02-25 00:26:18 +01:00
parent f7b3f404fe
commit bc8e1276c4
3 changed files with 12 additions and 50 deletions
+6 -47
View File
@@ -85,8 +85,8 @@ 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 = {
@@ -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
+2 -1
View File
@@ -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
View File
@@ -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 \