Migrate restic-server to ARM

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

View File

@ -45,6 +45,7 @@
management = mksdImage "management";
nextcloud = mksdImage "nextcloud";
pihole = mksdImage "pihole";
restic-server = mksdImage "restic-server";
};
nixosConfigurations = {
gwyn = mkComputer {
@ -97,7 +98,7 @@
home-module = "management";
inherit custom;
};
restic-server = mkComputer {
restic-server = mkRaspi {
hostname = "restic-server";
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.30";
inherit custom hostname;
})