mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
3478a9a0a5
Signed-off-by: Hadi <hadi@example.com>
26 lines
418 B
Nix
26 lines
418 B
Nix
{pkgs, ...}: {
|
|
# 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
|
|
];
|
|
};
|
|
};
|
|
}
|