Files
nix-config/home/shell/common.nix
2023-05-04 00:37:55 +08:00

18 lines
219 B
Nix

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