refactor: modularize 'nvim' for home manager hosts

This commit is contained in:
2026-01-19 10:12:02 +01:00
parent 3695c69f7a
commit 6af1e1a271
4 changed files with 11 additions and 6 deletions

9
home/modules/nvim.nix Normal file
View File

@@ -0,0 +1,9 @@
{ inputs, ... }:
{
config = {
home.packages = [
inputs.nvim.packages.${builtins.currentSystem}.nvim
];
};
}