From 2764393d065efc1b569385995a128277d6b6b953 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Mon, 11 Sep 2023 21:42:33 +0200 Subject: [PATCH] vpn1 is aarch64 --- modules/hardware/hetzner-vpn1.nix | 5 +++++ modules/server/default.nix | 1 + 2 files changed, 6 insertions(+) diff --git a/modules/hardware/hetzner-vpn1.nix b/modules/hardware/hetzner-vpn1.nix index 8ac8edc..e147668 100644 --- a/modules/hardware/hetzner-vpn1.nix +++ b/modules/hardware/hetzner-vpn1.nix @@ -8,6 +8,11 @@ ]; config = { + nixpkgs = { + hostPlatform = "aarch64-linux"; + system = "aarch64-linux"; + }; + boot = { tmp.cleanOnBoot = true; loader = { diff --git a/modules/server/default.nix b/modules/server/default.nix index 39940cd..cc13278 100644 --- a/modules/server/default.nix +++ b/modules/server/default.nix @@ -46,6 +46,7 @@ in { environment = { systemPackages = with pkgs; [ ncdu + htop ]; }; };