diff --git a/hosts/nixdesk/default.nix b/hosts/nixdesk/default.nix index 9cb67d9..4cb3551 100644 --- a/hosts/nixdesk/default.nix +++ b/hosts/nixdesk/default.nix @@ -69,6 +69,7 @@ programs.openrgb programs.tools programs.thunar + programs.wireshark services.psd services.dbus-broker diff --git a/sys/profiles/core/users.nix b/sys/profiles/core/users.nix index 6084ec6..ca18b71 100644 --- a/sys/profiles/core/users.nix +++ b/sys/profiles/core/users.nix @@ -15,6 +15,7 @@ "video" "render" "audio" + "wireshark" ]; openssh.authorizedKeys.keys = with vars.sshKeys; [ diff --git a/sys/profiles/programs/wireshark.nix b/sys/profiles/programs/wireshark.nix new file mode 100644 index 0000000..bb4614d --- /dev/null +++ b/sys/profiles/programs/wireshark.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + usbmon.enable = true; + }; +}