mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-21 13:52:34 +02:00
a90a3809ce
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
22 lines
329 B
Nix
22 lines
329 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [inputs.nvf.homeManagerModules.default];
|
|
programs.nvf = {
|
|
enable = true;
|
|
settings = {
|
|
imports = [
|
|
./options.nix
|
|
./languages.nix
|
|
./picker.nix
|
|
./snacks.nix
|
|
./keymaps.nix
|
|
./utils.nix
|
|
./mini.nix
|
|
];
|
|
};
|
|
};
|
|
}
|