From dff395a104966464dcf03d55914af89fad08bd24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Sat, 12 Apr 2025 12:53:16 +0200 Subject: [PATCH] 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. --- modules/hm/dev.nix | 11 ----------- modules/nixvim/dev-plugins.nix | 14 +------------- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/modules/hm/dev.nix b/modules/hm/dev.nix index 5e58c72..5e765ff 100644 --- a/modules/hm/dev.nix +++ b/modules/hm/dev.nix @@ -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 = { diff --git a/modules/nixvim/dev-plugins.nix b/modules/nixvim/dev-plugins.nix index f44c09b..b94dba8 100644 --- a/modules/nixvim/dev-plugins.nix +++ b/modules/nixvim/dev-plugins.nix @@ -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 = {