nix-config/modules/home-manager/nvim/lsp/rust-tools.nix
Gabe Venberg 9eb783a3e8 moved home-manager options to the "home" namespace
this frees up the "host" namespace for host-wide options.
2024-04-23 16:56:34 -05:00

17 lines
207 B
Nix

{
config,
pkgs,
lib,
...
}: {
config =
lib.mkIf config.home.nvim.enable-lsp
{
programs.nixvim = {
plugins.rust-tools = {
enable = true;
};
};
};
}