From a37b2b9e645ffe9b898a76af21ab86cad080d8e1 Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 24 May 2024 15:54:29 -0400 Subject: [PATCH] nix: default output to scopeHostStatic instead of scopeHost defaults to static builds instead of dynamically linked builds Signed-off-by: strawberry --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e80d2c28..010181fb 100644 --- a/flake.nix +++ b/flake.nix @@ -100,7 +100,7 @@ in { packages = { - default = scopeHost.main; + default = scopeHostStatic.main; hmalloc = scopeHost.main.override { features = ["hardened_malloc"]; }; oci-image = scopeHost.oci-image;