1
0
forked from clan/clan-core
clan-core/pkgs/flake-module.nix

12 lines
308 B
Nix
Raw Normal View History

{ ... }: {
perSystem = { pkgs, config, ... }: {
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
merge-after-ci = pkgs.callPackage ./merge-after-ci {
inherit (config.packages) tea-create-pr;
};
nix-unit = pkgs.callPackage ./nix-unit { };
};
};
}