clan-core/pkgs/flake-module.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{ ... }:
2024-04-23 16:55:00 +00:00
2024-03-17 18:48:49 +00:00
{
imports = [
./clan-cli/flake-module.nix
2023-11-23 13:37:05 +00:00
./clan-vm-manager/flake-module.nix
./installer/flake-module.nix
./schemas/flake-module.nix
2024-05-15 12:27:18 +00:00
./webview-ui/flake-module.nix
];
2024-03-17 18:48:49 +00:00
perSystem =
{
pkgs,
config,
lib,
...
}:
{
packages =
{
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
zerotier-members = pkgs.callPackage ./zerotier-members { };
zt-tcp-relay = pkgs.callPackage ./zt-tcp-relay { };
2024-03-20 08:55:25 +00:00
moonlight-sunshine-accept = pkgs.callPackage ./moonlight-sunshine-accept { };
2024-03-17 18:48:49 +00:00
merge-after-ci = pkgs.callPackage ./merge-after-ci { inherit (config.packages) tea-create-pr; };
pending-reviews = pkgs.callPackage ./pending-reviews { };
2024-05-27 11:52:54 +00:00
editor = pkgs.callPackage ./editor/clan-edit-codium.nix { };
2024-03-17 18:48:49 +00:00
}
// lib.optionalAttrs pkgs.stdenv.isLinux {
wayland-proxy-virtwl = pkgs.callPackage ./wayland-proxy-virtwl { };
# halalify zerotierone
zerotierone = pkgs.zerotierone.overrideAttrs (_old: {
meta = _old.meta // {
license = lib.licenses.apsl20;
};
});
2024-02-01 14:44:13 +00:00
};
};
}