23 lines
223 B
Nix
23 lines
223 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
# Git addons
|
||
|
git-secret
|
||
|
delta
|
||
|
# nix utilities
|
||
|
comma
|
||
|
nix-du
|
||
|
sops
|
||
|
hut
|
||
|
];
|
||
|
programs = {
|
||
|
direnv.enable = true;
|
||
|
};
|
||
|
}
|