Wiredog
This commit is contained in:
parent
1d697a0367
commit
eab79453e3
2 changed files with 15 additions and 4 deletions
|
|
@ -23,9 +23,9 @@
|
||||||
dig
|
dig
|
||||||
whois
|
whois
|
||||||
nmap
|
nmap
|
||||||
tcpdump
|
|
||||||
mtr
|
mtr
|
||||||
traceroute
|
traceroute
|
||||||
|
tio # Bit like minicom
|
||||||
|
|
||||||
# nix
|
# nix
|
||||||
lix
|
lix
|
||||||
|
|
@ -38,9 +38,6 @@
|
||||||
# zeal-qt6 # Offline documentation
|
# zeal-qt6 # Offline documentation
|
||||||
sqlitebrowser
|
sqlitebrowser
|
||||||
|
|
||||||
# Network
|
|
||||||
wireshark-qt
|
|
||||||
|
|
||||||
# Docker
|
# Docker
|
||||||
]
|
]
|
||||||
++ lib.optionals config.frogeye.dev.docker [
|
++ lib.optionals config.frogeye.dev.docker [
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,20 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
|
# Common
|
||||||
|
({
|
||||||
|
programs.tcpdump.enable = true;
|
||||||
|
users.users.geoffrey.extraGroups = [ "pcap" ];
|
||||||
|
})
|
||||||
|
# Common graphical
|
||||||
|
(lib.mkIf config.frogeye.desktop.xorg {
|
||||||
|
programs.wireshark = {
|
||||||
|
enable = true;
|
||||||
|
dumpcap.enable = true;
|
||||||
|
usbmon.enable = true;
|
||||||
|
};
|
||||||
|
users.users.geoffrey.extraGroups = [ "wireshark" ];
|
||||||
|
})
|
||||||
(lib.mkIf config.frogeye.dev.docker {
|
(lib.mkIf config.frogeye.dev.docker {
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
users.users.geoffrey.extraGroups = [ "docker" ];
|
users.users.geoffrey.extraGroups = [ "docker" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue