fix(rust): remove bacon and rustAnalyzerPackage
`rustAnalyzerPackage` was removed and I never got around to properly using `bacon`, so might as well save on space.
This commit is contained in:
parent
4c94fbec75
commit
dff395a104
2 changed files with 1 additions and 24 deletions
|
@ -17,17 +17,6 @@ in
|
||||||
[
|
[
|
||||||
(lib.mkIf cfg.rust.enable {
|
(lib.mkIf cfg.rust.enable {
|
||||||
home.packages = [ pkgs.rustup ] ++ cfg.rust.extraPackages;
|
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 = {
|
home = {
|
||||||
|
|
|
@ -158,19 +158,7 @@ in
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# Rust plugins
|
# Rust plugins
|
||||||
{
|
{ plugins.rustaceanvim.enable = true; }
|
||||||
plugins = {
|
|
||||||
bacon = {
|
|
||||||
enable = true;
|
|
||||||
settings.quickfix.enabled = true;
|
|
||||||
};
|
|
||||||
rustaceanvim = {
|
|
||||||
enable = true;
|
|
||||||
# Install through rustup
|
|
||||||
rustAnalyzerPackage = null;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
# Other plugins
|
# Other plugins
|
||||||
{
|
{
|
||||||
plugins = {
|
plugins = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue