18 lines
289 B
Nix
18 lines
289 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
# My own HM modules
|
|
./color
|
|
./fish
|
|
./git
|
|
./kitty
|
|
./lazygit
|
|
./neovim
|
|
./paths
|
|
./yazi
|
|
|
|
# HM modules imported from the flake inputs
|
|
inputs.nixvim.homeModules.nixvim
|
|
inputs.textfox.homeManagerModules.default
|
|
];
|
|
}
|