mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-12 10:09:50 +01:00
20 lines
387 B
Nix
20 lines
387 B
Nix
{inputs, ...}: {
|
|
perSystem = {
|
|
system,
|
|
inputs',
|
|
...
|
|
}: {
|
|
legacyPackages = import inputs.nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
inputs.self.overlays.default
|
|
|
|
(_: _: {
|
|
# Build nil from source to get most recent
|
|
# features as they are added.
|
|
nil = inputs'.nil.packages.default;
|
|
})
|
|
];
|
|
};
|
|
};
|
|
}
|