From e9a1b42e61a985417aa26957ce2efd7cc9803cde Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Sun, 26 Jan 2025 16:03:57 +0100 Subject: [PATCH] nixberry: add hostplatform --- systems/aarch64-linux/nixberry/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/systems/aarch64-linux/nixberry/default.nix b/systems/aarch64-linux/nixberry/default.nix index a159e22..69d20ef 100644 --- a/systems/aarch64-linux/nixberry/default.nix +++ b/systems/aarch64-linux/nixberry/default.nix @@ -4,6 +4,7 @@ lib, modulesPath, namespace, + pkgs, ... }: @@ -16,9 +17,12 @@ in { imports = with inputs.nixos-hardware.nixosModules; [ (modulesPath + "/installer/scan/not-detected.nix") - raspberry-pi-5 ]; + nixpkgs.hostPlatform = { + system = "aarch64-linux"; + }; + services.tailscale = { enable = true; useRoutingFeatures = "server"; @@ -149,6 +153,8 @@ in remotebuild = enabled; }; + apps.cli-apps.helix.pkg = pkgs.helix; + system = { # cachemiss for webkit gtk hardware.networking.enable = mkForce false;