nix-config/home-manager/sajenim/features/editor/default.nix
2025-06-06 18:35:13 +08:00

16 lines
203 B
Nix

{
inputs,
pkgs,
...
}: {
home.packages = with pkgs;
[
gcc
pandoc
python313Full
texliveFull
]
++ [
inputs.nixvim.packages.${pkgs.system}.default
];
}