nix-config/home/features/coding/tools.nix

11 lines
166 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{pkgs, ...}: {
programs = {
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [insomnia hugo pandoc];
}