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

34 lines
1.1 KiB
Nix
Raw Normal View History

{ ... }: {
imports = [
./clan-cli/flake-module.nix
2023-11-23 13:37:05 +00:00
./clan-vm-manager/flake-module.nix
./installer/flake-module.nix
./ui/flake-module.nix
2023-10-03 12:58:31 +00:00
./theme/flake-module.nix
];
perSystem = { pkgs, config, ... }: {
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
2023-09-29 08:51:38 +00:00
zerotier-members = pkgs.callPackage ./zerotier-members { };
merge-after-ci = pkgs.callPackage ./merge-after-ci {
inherit (config.packages) tea-create-pr;
};
2023-11-15 12:48:52 +00:00
pending-reviews = pkgs.callPackage ./pending-reviews { };
2023-12-06 13:28:35 +00:00
aemu = pkgs.callPackage ./aemu { };
gfxstream = pkgs.callPackage ./gfxstream {
inherit (config.packages) aemu;
};
rutabaga-gfx-ffi = pkgs.callPackage ./rutabaga-gfx-ffi {
inherit (config.packages) gfxstream aemu;
};
qemu-wayland = pkgs.callPackage ./qemu-wayland {
inherit (config.packages) rutabaga-gfx-ffi;
};
nix-unit = pkgs.callPackage ./nix-unit { };
2023-11-08 13:32:33 +00:00
meshname = pkgs.callPackage ./meshname { };
2023-08-24 12:09:19 +00:00
inherit (pkgs.callPackages ./node-packages { }) prettier-plugin-tailwindcss;
};
};
}