mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:54:28 +01:00
13 lines
268 B
Nix
13 lines
268 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
|
|
virt-viewer # vnc connect to VM, used by kubevirt
|
|
];
|
|
}
|