Files
nixos-config/home/shell/common.nix
2023-11-21 00:39:36 -04:00

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;
};
}