mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
5945a72b01
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
32 lines
488 B
Nix
32 lines
488 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [inputs.nvf.homeManagerModules.default];
|
|
|
|
# Packages needed by snacks image preview
|
|
home.packages = with pkgs; [
|
|
imagemagick
|
|
tree-sitter
|
|
ghostscript
|
|
tectonic
|
|
mermaid-cli
|
|
];
|
|
|
|
programs.nvf = {
|
|
enable = true;
|
|
settings = {
|
|
imports = [
|
|
./options.nix
|
|
./languages.nix
|
|
./picker.nix
|
|
./snacks.nix
|
|
./keymaps.nix
|
|
./utils.nix
|
|
./mini.nix
|
|
];
|
|
};
|
|
};
|
|
}
|