26 lines
304 B
Nix
26 lines
304 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
|
|
zed-editor
|
|
];
|
|
}
|