1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-15 11:32:08 +01:00
neovim-flake/flake/legacyPackages.nix
2025-01-10 12:52:29 +03:00

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;
})
];
};
};
}