Skip to content

Commit

Permalink
(eos) deploy some arr suite software
Browse files Browse the repository at this point in the history
For linux ISO management

Signed-off-by: Francis Begyn <francis@begyn.be>
  • Loading branch information
fbegyn committed Dec 15, 2024
1 parent e5cdf51 commit b466153
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion hosts/eos/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -917,9 +917,40 @@ in {
'';
};

# arr-suite
service.transmission = {
enable = true;
home = "/storage/transmission";
performanceNetParameters = true;
openRPCPort = true;
};
services.jackett = {
enable = true;
dataDir = "/storage/jackett/.config/Jackett";
};
services.sonarr = {
enable = true;
dataDir = "/storage/sonarr";
openFirewall = true;
};
services.radarr = {
enable = true;
dataDir = "/storage/radarr";
openFirewall = true;
};
services.jellyfin = {
enable = true;
dataDir = "/storage/jellyfin";
openFirewall = true;
};

home-manager.users.francis.home.stateVersion = "23.05";
home-manager.users.francis = {
imports = [ ../../users/francis/hm/go.nix ];
imports = [
../../users/francis/hm/go.nix
../../users/francis/hm/configurations/fish.nix
../../users/francis/hm/configurations/bash.nix
];
};

# This value determines the NixOS release from which the default
Expand Down

0 comments on commit b466153

Please sign in to comment.