migrating hades hosts to this repo
This commit is contained in:
parent
afe348d913
commit
b38f677544
15 changed files with 3672 additions and 18 deletions
16
nixos/hosts/hades/radarr/configuration.nix
Normal file
16
nixos/hosts/hades/radarr/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.radarr = {
|
||||
enable = true;
|
||||
dataDir = "/data/radarr";
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue