chore: flake update 04-07-2026

This commit is contained in:
2026-04-07 13:56:05 +05:00
parent 044e1e415e
commit cf4842a5b6
83 changed files with 581 additions and 352 deletions

View File

@@ -10,34 +10,39 @@
};
};
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
nil
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
nil
nodejs_24
python313
rustToolchain
];
nodejs_24
python313
rustToolchain
];
shellHook = ''
echo "Neovim development environment"
echo "nvim is configured with your local config"
'';
};
});
shellHook = ''
echo "Neovim development environment"
echo "nvim is configured with your local config"
'';
};
}
);
}