Litenet-Nix-Infra/host/matrix/unstable-overlay.nix

15 lines
454 B
Nix

{ pkgs, nixpkgs-master, Rory-Open-Architecture, ... }:
{
disabledModules = [
"services/matrix/synapse.nix"
];
imports = [
"${nixpkgs-master}/nixos/modules/services/matrix/synapse.nix"
];
nixpkgs.overlays = [
(final: prev: {
matrix-synapse-unwrapped = builtins.trace (builtins.attrNames Rory-Open-Architecture) Rory-Open-Architecture.packages.${pkgs.stdenv.hostPlatform.system}.matrix-synapse-unwrapped-patched;
})
];
}