refactor: remove unnecessary config wrapper in nvim

This commit is contained in:
2026-03-11 21:25:32 +01:00
parent 9285e69086
commit 6389bf4e25
+3 -5
View File
@@ -1,9 +1,7 @@
{ pkgs, inputs, ... }:
{
config = {
home.packages = [
inputs.nvim.packages.${pkgs.stdenv.hostPlatform.system}.nvim
];
};
home.packages = [
inputs.nvim.packages.${pkgs.stdenv.hostPlatform.system}.nvim
];
}