Devel module

This commit is contained in:
Nathan McCarty 2024-11-29 05:46:01 +00:00
parent 23208659b1
commit 085a4aa66f
4 changed files with 55 additions and 3 deletions

View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}:
{
home.packages = with pkgs; [
# Git addons
git-secret
delta
# nix utilities
comma
nix-du
sops
hut
];
programs = {
direnv.enable = true;
};
}