clan-core/pkgs/flake-module.nix
Johannes Kirschbauer e9f3be0056
Some checks failed
checks-impure / test (pull_request) Successful in 13s
checks / test (pull_request) Failing after 37s
coporate color system: init
2023-10-03 14:58:31 +02:00

21 lines
597 B
Nix

{ ... }: {
imports = [
./clan-cli/flake-module.nix
./installer/flake-module.nix
./ui/flake-module.nix
./theme/flake-module.nix
];
perSystem = { pkgs, config, ... }: {
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
zerotier-members = pkgs.callPackage ./zerotier-members { };
merge-after-ci = pkgs.callPackage ./merge-after-ci {
inherit (config.packages) tea-create-pr;
};
nix-unit = pkgs.callPackage ./nix-unit { };
inherit (pkgs.callPackages ./node-packages { }) prettier-plugin-tailwindcss;
};
};
}