{ pkgs, ... }: {
packages = with pkgs; [
tombi
bacon
];
languages.rust = {
enable = true;
toolchainFile = ./rust-toolchain.toml;
lld.enable = true;
lsp.enable = true;
};
}