about summary refs log tree commit diff
path: root/users/grfn
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2023-05-05T21·26-0400
committerclbot <clbot@tvl.fyi>2023-05-05T21·30+0000
commit196a31df898c615c64128a6c30f71a52b2a8e62c (patch)
tree66b921c19515da6ac199a6e8aa2f1eaac6c26bd7 /users/grfn
parent1e4b73ac957f30b57800533276a1f571d06f4f62 (diff)
fix(grfn/system): Use the qt-ui wireshark package r/6123
Change-Id: I97cf04ae6a950fa84262e94d297775edc5273852
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8548
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'users/grfn')
-rw-r--r--users/grfn/system/system/modules/wireshark.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/users/grfn/system/system/modules/wireshark.nix b/users/grfn/system/system/modules/wireshark.nix
index 0bc1d8f04a..30658419fc 100644
--- a/users/grfn/system/system/modules/wireshark.nix
+++ b/users/grfn/system/system/modules/wireshark.nix
@@ -1,6 +1,9 @@
 { config, lib, pkgs, ... }:
 
 {
-  programs.wireshark.enable = true;
+  programs.wireshark = {
+    enable = true;
+    package = pkgs.wireshark;
+  };
   users.users.grfn.extraGroups = [ "wireshark" ];
 }