summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-29 05:43:50 -0500
committerseth <[email protected]>2023-12-29 05:55:01 -0500
commitf8ced3f27f85ea93b2d85ad8a6b2cefbeaea7a38 (patch)
tree458e95cce940682fac84be809078f6b1c97b70d2 /flake.nix
parent601e4947edf917555ca45931121e343c86b05f6a (diff)
ci: use nix-fast-build
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/flake.nix b/flake.nix
index e7eee65..9cd5074 100644
--- a/flake.nix
+++ b/flake.nix
@@ -66,44 +66,5 @@
full = "big template for complex flakes (using flake-parts)";
nixos = "minimal boilerplate for flake-based nixos configuration";
};
-
- githubWorkflow.matrix = let
- inherit (nixpkgs) lib;
-
- ciSystems = [
- "x86_64-linux"
- "aarch64-linux"
- "x86_64-darwin"
- ];
-
- platforms = {
- "x86_64-linux" = {
- arch = "x64";
- os = "ubuntu-latest";
- };
-
- "aarch64-linux" = {
- arch = "aarch64";
- os = "ubuntu-latest";
- };
-
- "x86_64-darwin" = {
- arch = "x64";
- os = "macos-latest";
- };
- };
- in {
- include = lib.pipe ciSystems [
- (systems: lib.getAttrs systems self.packages)
-
- (lib.mapAttrsToList (system:
- lib.mapAttrsToList (attr: _: {
- inherit (platforms.${system}) os arch;
- attr = "packages.${system}.${attr}";
- })))
-
- lib.flatten
- ];
- };
};
}