clan-core/pkgs/flake-module.nix
Jörg Thalheim 6d1de943e1
All checks were successful
build / test (pull_request) Successful in 21s
move out non-toplevel flake modules from flake.nix
2023-08-08 14:03:26 +02:00

18 lines
419 B
Nix

{ ... }: {
imports = [
./clan-cli/flake-module.nix
./installer/flake-module.nix
./ui/flake-module.nix
];
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 { };
};
};
}