flake update.

This commit is contained in:
Gabe Venberg 2024-11-06 14:00:50 +01:00
parent 6608679a60
commit f44fd68fbd
5 changed files with 73 additions and 48 deletions

View file

@ -0,0 +1,16 @@
{
config,
pkgs,
lib,
...
}: {
config =
lib.mkIf (config.user.nvim.enable-lsp && config.user.nvim.enable)
{
programs.nixvim = {
plugins.rustaceanvim = {
enable = true;
};
};
};
}