mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
bcab9c277c
Add nixd to flake.nix and legacyPackages.nix. Format with alejandra. Update flake.nix Undo change made by nixfmt-rfc-style Set nixd to follow flake-utils as well. Update nixd lspConfig
20 lines
395 B
Nix
20 lines
395 B
Nix
{inputs, ...}: {
|
|
perSystem = {
|
|
system,
|
|
inputs',
|
|
...
|
|
}: {
|
|
legacyPackages = import inputs.nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
inputs.self.overlays.default
|
|
(_: _: {
|
|
rnix-lsp = inputs'.rnix-lsp.defaultPackage;
|
|
nil = inputs'.nil.packages.default;
|
|
nixd = inputs'.nixd.packages.default;
|
|
})
|
|
];
|
|
};
|
|
};
|
|
}
|