dotfiles/modules/development/default.nix
2025-06-26 17:03:29 +02:00

19 lines
207 B
Nix

{
pkgs,
...
}:
{
imports = [
./git.nix
./direnv.nix
./fd.nix
./ripgrep.nix
];
home-manager.users.kalle.home.packages = with pkgs; [
httpie
gcc
jq
difftastic
];
}