mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 23:44:16 +01:00
18 lines
219 B
Nix
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;
|
|
};
|
|
} |