summaryrefslogtreecommitdiff
path: root/nixos/profiles/workstation
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-07-14 07:39:32 +0200
committerMartin Fischer <martin@push-f.com>2025-07-14 09:05:13 +0200
commitdeadb9491705c32b6a82530b9334aa67d1904aac (patch)
treec5f3b71b67d979586552791ec64886ec282f5b2f /nixos/profiles/workstation
parent55d1b6ffbc36031cd9d285f2675d2dda343c627b (diff)
feat(workstation): add wiresharkHEADmaster
Diffstat (limited to 'nixos/profiles/workstation')
-rw-r--r--nixos/profiles/workstation/default.nix1
-rw-r--r--nixos/profiles/workstation/dev.nix5
2 files changed, 6 insertions, 0 deletions
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix
index 9069530..9df5328 100644
--- a/nixos/profiles/workstation/default.nix
+++ b/nixos/profiles/workstation/default.nix
@@ -27,6 +27,7 @@ in
"wheel"
"networkmanager"
"dialout"
+ "wireshark"
];
};
diff --git a/nixos/profiles/workstation/dev.nix b/nixos/profiles/workstation/dev.nix
index ac9b2f1..4ea7f06 100644
--- a/nixos/profiles/workstation/dev.nix
+++ b/nixos/profiles/workstation/dev.nix
@@ -34,6 +34,11 @@
nixd
];
+ programs.wireshark = {
+ enable = true;
+ package = pkgs.wireshark;
+ };
+
virtualisation.podman = {
enable = true;
dockerSocket.enable = true;