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
This commit is contained in:
Dan 2025-10-21 18:38:42 -07:00
parent 0cbbb19da2
commit 40e5501dd5

View file

@ -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 = [