chore: run formatter
This commit is contained in:
@@ -10,30 +10,33 @@
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, fenix }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
fenixLib = fenix.packages.${system};
|
||||
rustToolchain = fenixLib.stable.toolchain;
|
||||
in
|
||||
{
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
lua-language-server
|
||||
stylua
|
||||
ripgrep
|
||||
fd
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
fenix,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
fenixLib = fenix.packages.${system};
|
||||
rustToolchain = fenixLib.stable.toolchain;
|
||||
in {
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
lua-language-server
|
||||
stylua
|
||||
ripgrep
|
||||
fd
|
||||
|
||||
nodejs_24
|
||||
python313
|
||||
rustToolchain
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
echo "Neovim development environment"
|
||||
echo "nvim is configured with your local config"
|
||||
'';
|
||||
};
|
||||
});
|
||||
nodejs_24
|
||||
python313
|
||||
rustToolchain
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
echo "Neovim development environment"
|
||||
echo "nvim is configured with your local config"
|
||||
'';
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user