Skip to content

Commit ab1f51c

Browse files
author
Marc Jakobi
committed
build(flake): enable for all systems
1 parent d27a72a commit ab1f51c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

flake.nix

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,12 @@
2121
gen-luarc,
2222
...
2323
}: let
24-
supportedSystems = [
25-
"x86_64-linux"
26-
"aarch64-linux"
27-
"x86_64-darwin"
28-
"aarch64-darwin"
29-
];
24+
systems = builtins.attrNames nixpkgs.legacyPackages;
3025

3126
# This is where the Neovim derivation is built.
3227
neovim-overlay = import ./nix/neovim-overlay.nix {inherit inputs;};
3328
in
34-
flake-utils.lib.eachSystem supportedSystems (system: let
29+
flake-utils.lib.eachSystem systems (system: let
3530
pkgs = import nixpkgs {
3631
inherit system;
3732
overlays = [

0 commit comments

Comments
 (0)