refactor(home): organize home manager modules

This commit is contained in:
2026-02-22 17:18:44 +01:00
parent c5254c96a0
commit 6643ba6bee
16 changed files with 33 additions and 33 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, inputs, ... }:
{
config = {
home.packages = [
inputs.nvim.packages.${pkgs.stdenv.hostPlatform.system}.nvim
];
};
}