From 920fb1971ab05f9010f7f127231a41476e30e9ac Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 10 Mar 2025 12:33:59 +1100 Subject: [PATCH] hosts/anemone: add wireshark --- hosts/anemone/default.nix | 5 +++++ users/rin/wayland.nix | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/anemone/default.nix b/hosts/anemone/default.nix index e55e20d..5b8e534 100644 --- a/hosts/anemone/default.nix +++ b/hosts/anemone/default.nix @@ -40,4 +40,9 @@ nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ]; + + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + }; } diff --git a/users/rin/wayland.nix b/users/rin/wayland.nix index 1bfef8c..edbcfda 100644 --- a/users/rin/wayland.nix +++ b/users/rin/wayland.nix @@ -2,7 +2,7 @@ programs.zsh.enable = true; users.users.rin = { isNormalUser = true; - extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" ]; + extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" "wireshark" ]; shell = pkgs.zsh; uid = 1001; passwordFile = config.age.secrets.passwd.path;