We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27a72a commit ab1f51cCopy full SHA for ab1f51c
flake.nix
@@ -21,17 +21,12 @@
21
gen-luarc,
22
...
23
}: let
24
- supportedSystems = [
25
- "x86_64-linux"
26
- "aarch64-linux"
27
- "x86_64-darwin"
28
- "aarch64-darwin"
29
- ];
+ systems = builtins.attrNames nixpkgs.legacyPackages;
30
31
# This is where the Neovim derivation is built.
32
neovim-overlay = import ./nix/neovim-overlay.nix {inherit inputs;};
33
in
34
- flake-utils.lib.eachSystem supportedSystems (system: let
+ flake-utils.lib.eachSystem systems (system: let
35
pkgs = import nixpkgs {
36
inherit system;
37
overlays = [
0 commit comments