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