mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
nuc: enable more indexing software
This commit is contained in:
parent
9f8ef5247d
commit
dacf54aa9c
6 changed files with 35 additions and 6 deletions
7
hosts/nuc/modules/indexing/default.nix
Normal file
7
hosts/nuc/modules/indexing/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./prowlarr.nix
|
||||
./radarr.nix
|
||||
./sonarr.nix
|
||||
];
|
||||
}
|
7
hosts/nuc/modules/indexing/prowlarr.nix
Normal file
7
hosts/nuc/modules/indexing/prowlarr.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.prowlarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
7
hosts/nuc/modules/indexing/radarr.nix
Normal file
7
hosts/nuc/modules/indexing/radarr.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.radarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
7
hosts/nuc/modules/indexing/sonarr.nix
Normal file
7
hosts/nuc/modules/indexing/sonarr.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.sonarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue