Files
nix/home/common/programs/dev.nix
T
Miguel Palhas c2afc748c6 updates
2025-05-05 10:39:17 +01:00

25 lines
287 B
Nix

{
lib,
config,
pkgs,
...
}:
{
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [
imagemagick
doctl
aider-chat
inotify-tools
devenv
bruno
];
}