2283ee602a
This enables the tracking of core-services-01 over the infrastructure repository. Co-authored-by: Gabriel DORIATH DOHLER <gabriel.doriath.dohler@ens.psl.eu> Reviewed-on: https://git.rz.ens.wtf/Klub-RZ/infrastructure/pulls/1 Co-authored-by: raito <raito@noreply.git.rz.ens.wtf> Co-committed-by: raito <raito@noreply.git.rz.ens.wtf>
17 lines
367 B
Nix
17 lines
367 B
Nix
{ lib, pkgs, ... }:
|
|
let
|
|
nivSources = import ./nix/sources.nix;
|
|
rz-src = nivSources.klubrz-nur;
|
|
rz-no-pkgs = (import nivSources.klubrz-nur {});
|
|
in
|
|
{
|
|
nixpkgs.config.packageOverrides = {
|
|
rz = import rz-src { inherit pkgs; };
|
|
};
|
|
|
|
imports = [
|
|
"${nivSources.agenix}/modules/age.nix"
|
|
] ++ lib.attrValues rz-no-pkgs.modules;
|
|
|
|
nixpkgs.overlays = [];
|
|
}
|