modularize neovim and terminal

This commit is contained in:
Fabian Montero 2024-11-20 17:04:00 -06:00
parent 85dfcfdb72
commit 001642dc94
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
9 changed files with 104 additions and 74 deletions

11
home/modules/default.nix Normal file
View file

@ -0,0 +1,11 @@
{
config,
lib,
pkgs,
...
}: {
imports = [
./terminal
./neovim.nix
];
}