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

22 lines
690 B
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
];
2023-12-06 13:28:35 +00:00
perSystem = { pkgs, config, lib, ... }: {
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-11-08 13:32:33 +00:00
meshname = pkgs.callPackage ./meshname { };
2023-12-06 13:28:35 +00:00
} // lib.optionalAttrs pkgs.stdenv.isLinux {
2023-12-15 11:25:05 +00:00
wayland-proxy-virtwl = pkgs.callPackage ./wayland-proxy-virtwl { };
};
};
}