nixformat alias

This commit is contained in:
Danilo Reyes 2025-09-29 21:23:56 -06:00
parent bb08c52790
commit ba8d491cf7

View File

@ -31,5 +31,12 @@ in
};
config = lib.mkIf config.my.dev.nix.enable {
users.users.jawz = { inherit packages; };
home-manager.users.jawz.programs.bash.shellAliases = {
nixformat = ''
nix run unstable#deadnix -- -e && \
nix run unstable#nixfmt-tree && \
nix run unstable#statix fix
'';
};
};
}