nix: use all-features for complement OCI images
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
39c0f4ea3d
commit
39f19c483a
1 changed files with 8 additions and 1 deletions
|
@ -15,7 +15,14 @@
|
||||||
let
|
let
|
||||||
main' = main.override {
|
main' = main.override {
|
||||||
profile = "dev";
|
profile = "dev";
|
||||||
features = ["axum_dual_protocol"];
|
all_features = true;
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
start = writeShellScriptBin "start" ''
|
start = writeShellScriptBin "start" ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue