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;