From ee5ecc47f710c6f76c766768b1f8516ea5374610 Mon Sep 17 00:00:00 2001 From: dadada Date: Wed, 8 Mar 2023 17:42:45 +0100 Subject: [PATCH] enable wireshark --- nixos/gorgon/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/gorgon/configuration.nix b/nixos/gorgon/configuration.nix index 76b5d71..1b7bdb1 100644 --- a/nixos/gorgon/configuration.nix +++ b/nixos/gorgon/configuration.nix @@ -75,6 +75,8 @@ in programs.adb.enable = true; + programs.wireshark.enable = true; + services.avahi.enable = true; # Enable CUPS to print documents. @@ -117,7 +119,7 @@ in users.users = { dadada = { isNormalUser = true; - extraGroups = [ "wheel" "networkmanager" "libvirtd" "adbusers" "kvm" "video" "scanner" "lp" "docker" "dialout" ]; + extraGroups = [ "wheel" "networkmanager" "libvirtd" "adbusers" "kvm" "video" "scanner" "lp" "docker" "dialout" "wireshark" ]; shell = "/run/current-system/sw/bin/zsh"; }; };