clan-core/pkgs/flake-module.nix
Jörg Thalheim 0e0803f000
All checks were successful
checks / test (pull_request) Successful in 1m10s
checks-impure / test (pull_request) Successful in 1m45s
package meshnamed
2023-11-08 14:32:49 +01:00

22 lines
647 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 { };
meshname = pkgs.callPackage ./meshname { };
inherit (pkgs.callPackages ./node-packages { }) prettier-plugin-tailwindcss;
};
};
}