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

11 lines
166 B
Nix

{pkgs, ...}: {
programs = {
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [insomnia hugo pandoc];
}