nixos/systems/plex/default.nix

19 lines
539 B
Nix

{ custom, hostname }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.112";
inherit custom hostname;
})
(import "${custom.inputs.self}/modules/restic-server-client" {
path = "/var/lib/plex";
tag = "plex";
time = "03:30";
inherit custom;
})
(import "${custom.inputs.self}/modules/docker" { inherit custom; })
"${custom.inputs.self}/modules/media-share"
(import "${custom.inputs.self}/modules/plex" { inherit custom; })
];
}