Compare commits

...

1 commit

Author SHA1 Message Date
dff395a104
fix(rust): remove bacon and rustAnalyzerPackage
Some checks failed
/ check (push) Failing after 39s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Has been skipped
/ build-vm (push) Has been skipped
/ report-size (push) Has been skipped
`rustAnalyzerPackage` was removed and I never got around to properly
using `bacon`, so might as well save on space.
2025-04-12 12:54:28 +02:00
2 changed files with 1 additions and 24 deletions

View file

@ -17,17 +17,6 @@ in
[
(lib.mkIf cfg.rust.enable {
home.packages = [ pkgs.rustup ] ++ cfg.rust.extraPackages;
# Background code checker (for Rust)
programs.bacon = {
enable = true;
settings = {
export = {
enabled = true;
path = ".bacon-locations";
line_format = "{kind} {path}:{line}:{column} {message}";
};
};
};
})
{
home = {

View file

@ -158,19 +158,7 @@ in
};
}
# Rust plugins
{
plugins = {
bacon = {
enable = true;
settings.quickfix.enabled = true;
};
rustaceanvim = {
enable = true;
# Install through rustup
rustAnalyzerPackage = null;
};
};
}
{ plugins.rustaceanvim.enable = true; }
# Other plugins
{
plugins = {