migrating hades hosts to this repo
This commit is contained in:
parent
6ae076296e
commit
6878e2b786
15 changed files with 3672 additions and 18 deletions
16
nixos/hosts/hades/sonarr/configuration.nix
Normal file
16
nixos/hosts/hades/sonarr/configuration.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
system.stateVersion = "21.05";
|
||||
networking.interfaces.eth0.useDHCP = true;
|
||||
|
||||
fileSystems."/mnt/storage" = {
|
||||
device = "storage:/mnt/storage";
|
||||
fsType = "nfs";
|
||||
};
|
||||
|
||||
services.sonarr = {
|
||||
enable = true;
|
||||
dataDir = "/data/sonarr";
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue