mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
15 lines
220 B
Nix
15 lines
220 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# db related
|
|
dbeaver
|
|
|
|
mitmproxy # http/https proxy tool
|
|
insomnia # REST client
|
|
wireshark # network analyzer
|
|
ventoy # create bootable usb
|
|
];
|
|
}
|