summaryrefslogtreecommitdiff
path: root/repo/ci.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-28 06:50:30 -0500
committerseth <[email protected]>2024-02-28 06:50:30 -0500
commit62621080f9f97f5dffa889daf1dbc7257ba2cda7 (patch)
tree2d43ba122f05a722d25d15274492e666f514756b /repo/ci.nix
parentc8ce9e7c75b65176a1e018d37948a72e55e8d4d1 (diff)
move repo stuff to root flake.nix
Diffstat (limited to 'repo/ci.nix')
-rw-r--r--repo/ci.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/repo/ci.nix b/repo/ci.nix
deleted file mode 100644
index 05fd106..0000000
--- a/repo/ci.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{self, ...}: {
- perSystem = {
- lib,
- pkgs,
- system,
- self',
- ...
- }: let
- ci = self.lib.ci [system];
-
- configurations = map (type: ci.mapCfgsToDerivs (ci.getCompatibleCfgs self.${type})) [
- "nixosConfigurations"
- "darwinConfigurations"
- "homeConfigurations"
- ];
-
- required = lib.concatMap lib.attrValues (
- [
- self'.checks
- self'.devShells
- ]
- ++ configurations
- );
- in {
- packages.ciGate = pkgs.writeText "ci-gate" (
- lib.concatMapStringsSep "\n" toString required
- );
- };
-}