From e83c9ac4e0ad8ad3db377eec67f682ebb4430653 Mon Sep 17 00:00:00 2001 From: notohh Date: Thu, 20 Jun 2024 10:05:02 -0400 Subject: [PATCH] module: set tokio to unstable --- nix/module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/module.nix b/nix/module.nix index 7c5887f..a5531a5 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -38,6 +38,7 @@ in { wantedBy = ["multi-user.target"]; environment = { RUST_LOG = cfg.log_level; + RUSTFLAGS = "--cfg tokio_unstable"; }; serviceConfig = { EnvironmentFile = cfg.environmentFiles;