12 lines
136 B
Nix
12 lines
136 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# WEB
|
|
postman
|
|
# burpsuite
|
|
httpie
|
|
|
|
# REVERSING
|
|
ghidra-bin
|
|
];
|
|
}
|