blob: 0c81eb70f241fe2da7fddd9a2212c2657494a62f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Requires something like this in nixPath:
# "orbekk=https://hydra.orbekk.com/project/orbekk-projects/channel/latest/nixexprs.tar.bz2"
{ config, lib, pkgs, ... }:
let
stablePkgs = import <nixpkgs-stable> {};
in
{
nixpkgs.config.packageOverrides = pkgs: {
# Broken in nixos-unstable
matrix-synapse = stablePkgs.matrix-synapse;
};
}
|