System/home-manager/modules/programs/devel.nix

23 lines
223 B
Nix
Raw Normal View History

2024-11-29 05:46:01 +00:00
{
config,
lib,
pkgs,
...
}:
{
home.packages = with pkgs; [
# Git addons
git-secret
delta
# nix utilities
comma
nix-du
sops
hut
];
programs = {
direnv.enable = true;
};
}