nixos/systems/plex/default.nix

18 lines
522 B
Nix
Raw Normal View History

2022-11-03 11:03:12 +01:00
{ custom, hostname, inputs }: { pkgs, ... }:
2022-02-28 22:08:07 +01:00
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.112";
2022-09-06 23:03:29 +02:00
inherit hostname inputs;
2022-02-28 22:08:07 +01:00
})
(import "${inputs.self}/modules/restic-server-client" {
path = "/var/lib/plex";
tag = "plex";
2022-11-03 11:03:12 +01:00
time = "03:30"; inherit custom hostname inputs;
2022-02-28 22:08:07 +01:00
})
2022-11-04 13:01:07 +01:00
(import "${inputs.self}/modules/docker" { inherit custom; })
2022-10-17 21:58:03 +02:00
"${inputs.self}/modules/media-share"
2022-11-04 13:33:27 +01:00
(import "${inputs.self}/modules/plex" { inherit inputs; })
2022-02-28 22:08:07 +01:00
];
}