18 lines
217 B
Nix
18 lines
217 B
Nix
{ pkgs
|
|
, ...
|
|
}:
|
|
# nix tooling
|
|
{
|
|
home.packages = with pkgs; [
|
|
alejandra
|
|
deadnix
|
|
statix
|
|
];
|
|
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
}
|