From 1dd0ceece78c74979d67ed7d804ed7a917b38a7e Mon Sep 17 00:00:00 2001 From: Xe Date: Wed, 21 Dec 2022 13:04:41 -0500 Subject: [PATCH] make wasmtime in pneuma's path Signed-off-by: Xe --- hosts/pneuma/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/pneuma/default.nix b/hosts/pneuma/default.nix index 74a9723..277b968 100755 --- a/hosts/pneuma/default.nix +++ b/hosts/pneuma/default.nix @@ -1,10 +1,11 @@ { config, pkgs, ... }: { - boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + boot.binfmt.emulatedSystems = [ "aarch64-linux" "wasm32-wasi" ]; virtualisation.docker.enable = true; users.motd = builtins.readFile ./motd; services.tailscale.port = 15430; + environment.systemPackages = with pkgs; [ wasmtime ]; networking.hostName = "pneuma"; networking.hostId = "34fbd94b";