Migrate nextcloud to ARM

This commit is contained in:
Andreas Zweili 2022-11-08 21:26:00 +01:00
parent d352d2d1ff
commit ab21065002
2 changed files with 3 additions and 2 deletions

View File

@ -43,6 +43,7 @@
proxy = mksdImage "proxy";
mail = mksdImage "mail";
management = mksdImage "management";
nextcloud = mksdImage "nextcloud";
};
nixosConfigurations = {
gwyn = mkComputer {
@ -73,7 +74,7 @@
hostname = "mail";
inherit custom;
};
nextcloud = mkComputer {
nextcloud = mkRaspi {
hostname = "nextcloud";
inherit custom;
};

View File

@ -4,7 +4,7 @@ let
in
{
imports = [
(import "${custom.inputs.self}/systems/proxmox-vm" {
(import "${custom.inputs.self}/systems/raspi4" {
ip = "10.7.89.103";
inherit custom hostname;
})