From 40e5501dd54cb9a4d21c95b855baf0319b8df237 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 21 Oct 2025 18:38:42 -0700 Subject: [PATCH] Fix: Add olm permission to pkgs-unstable in production config - Configure pkgs-unstable with permittedInsecurePackages in flake.nix - Matches VM configuration approach - Allows mautrix bridges to build successfully --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 115af84..5d799ab 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,12 @@ specialArgs = { pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; - config.allowUnfree = true; + config = { + allowUnfree = true; + permittedInsecurePackages = [ + "olm-3.2.16" # Required by mautrix bridges + ]; + }; }; }; modules = [