Switch ttrss to ARM

This commit is contained in:
Andreas Zweili 2022-11-09 01:20:52 +01:00
parent 69002ac0e1
commit 0e694de157
2 changed files with 3 additions and 2 deletions

View File

@ -46,6 +46,7 @@
nextcloud = mksdImage "nextcloud"; nextcloud = mksdImage "nextcloud";
pihole = mksdImage "pihole"; pihole = mksdImage "pihole";
restic-server = mksdImage "restic-server"; restic-server = mksdImage "restic-server";
ttrss = mksdImage "ttrss";
}; };
nixosConfigurations = { nixosConfigurations = {
gwyn = mkComputer { gwyn = mkComputer {
@ -102,7 +103,7 @@
hostname = "restic-server"; hostname = "restic-server";
inherit custom; inherit custom;
}; };
ttrss = mkComputer { ttrss = mkRaspi {
hostname = "ttrss"; hostname = "ttrss";
inherit custom; inherit custom;
}; };

View File

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