Merge branch 'main' into dev

This commit is contained in:
rasmus-kirk
2025-10-23 14:27:41 +02:00
2 changed files with 7 additions and 4 deletions
+6 -4
View File
@@ -9,7 +9,7 @@ you are using the [first example](/wiki/examples/example-1) in your Nix
configuration. Replace {URL} in this document with your server IP or domain. configuration. Replace {URL} in this document with your server IP or domain.
In the below setup, we assume you also didn't set the `nixarr.mediaDir` In the below setup, we assume you also didn't set the `nixarr.mediaDir`
option, which by defuault is set to `/data/media`. option, which by default is set to `/data/media`.
## Jellyfin ## Jellyfin
@@ -31,7 +31,7 @@ option, which by defuault is set to `/data/media`.
## Transmission ## Transmission
Transmission should already be setupup and running since it's configured Transmission should already be setup and running since it's configured
with JSON, and can therefore be configured with nix. The most basic settings are already set. See the following links for more info: with JSON, and can therefore be configured with nix. The most basic settings are already set. See the following links for more info:
- [The configured Nixarr defaults for transmission](https://github.com/rasmus-kirk/nixarr/blob/28d1be070deb1a064c1967889c11c8921752fa09/nixarr/transmission/default.nix#L355) - [The configured Nixarr defaults for transmission](https://github.com/rasmus-kirk/nixarr/blob/28d1be070deb1a064c1967889c11c8921752fa09/nixarr/transmission/default.nix#L355)
@@ -47,6 +47,7 @@ with JSON, and can therefore be configured with nix. The most basic settings are
- Go to "Settings" > "Media Management": - Go to "Settings" > "Media Management":
- Click on `Show Advanced` - Click on `Show Advanced`
- Under `Importing`, enable `Use Hardlinks instead of Copy` - Under `Importing`, enable `Use Hardlinks instead of Copy`
- Under `Permissions`, change `chmod Folder` to `775`
- Under `Root Folders`, click `Add Root Folder`. Add - Under `Root Folders`, click `Add Root Folder`. Add
`/data/media/library/movies/`, then click `Save Changes`. `/data/media/library/movies/`, then click `Save Changes`.
- Go to "Settings" > "Download Clients" and add Transmission. Change the - Go to "Settings" > "Download Clients" and add Transmission. Change the
@@ -66,8 +67,9 @@ with JSON, and can therefore be configured with nix. The most basic settings are
- Go to "Settings" > "Media Management": - Go to "Settings" > "Media Management":
- Click on `Show Advanced` - Click on `Show Advanced`
- Under `Importing`, enable `Use Hardlinks instead of Copy` - Under `Importing`, enable `Use Hardlinks instead of Copy`
- Under `Permissions`, change `chmod Folder` to `775`
- Under `Root Folders`, click `Add Root Folder`. Add - Under `Root Folders`, click `Add Root Folder`. Add
`/data/media/library/movies/`, then click `Save Changes`. `/data/media/library/shows/`, then click `Save Changes`.
- Go to "Settings" > "Download Clients" and add Transmission. Change the - Go to "Settings" > "Download Clients" and add Transmission. Change the
category to `sonarr`. category to `sonarr`.
@@ -104,7 +106,7 @@ with JSON, and can therefore be configured with nix. The most basic settings are
- Go to {URL}:6767/settings/general and set `Unmonitor Deleted Subtitles` to - Go to {URL}:6767/settings/general and set `Unmonitor Deleted Subtitles` to
true. true.
- Go to "Settings" > "Audio Synchronization / Alignment" > "Automatic - Go to "Settings" > "Subtitles" > "Audio Synchronization / Alignment" and enable "Automatic
Subtitles Audio Synchronization" Subtitles Audio Synchronization"
## Prowlarr ## Prowlarr
+1
View File
@@ -98,6 +98,7 @@ in {
--port ${toString cfg.port} \ --port ${toString cfg.port} \
--no-update True --no-update True
''; '';
KillSignal = "SIGINT";
Restart = "on-failure"; Restart = "on-failure";
KillSignal = "SIGINT"; KillSignal = "SIGINT";
SuccessExitStatus = "0 156"; SuccessExitStatus = "0 156";