Migrate plex to ARM

This commit is contained in:
Andreas Zweili 2022-11-08 21:22:24 +01:00
parent 78e1d7e2ca
commit 8f2ae86cb9
2 changed files with 3 additions and 2 deletions

View File

@ -39,6 +39,7 @@
images = {
git = mksdImage "git";
loki-test = mksdImage "loki-test";
plex = mksdImage "plex";
proxy = mksdImage "proxy";
management = mksdImage "management";
};
@ -79,7 +80,7 @@
hostname = "pihole";
inherit custom;
};
plex = mkComputer {
plex = mkRaspi {
hostname = "plex";
home-module = "plex";
inherit custom;

View File

@ -1,7 +1,7 @@
{ custom, hostname }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/systems/proxmox-vm" {
(import "${custom.inputs.self}/systems/raspi4" {
ip = "10.7.89.112";
inherit custom hostname;
})