summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
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
- ];
- };
};
}