diff options
author | Griffin Smith <root@gws.fyi> | 2023-05-05T21·26-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-05T21·30+0000 |
commit | 196a31df898c615c64128a6c30f71a52b2a8e62c (patch) | |
tree | 66b921c19515da6ac199a6e8aa2f1eaac6c26bd7 | |
parent | 1e4b73ac957f30b57800533276a1f571d06f4f62 (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>
-rw-r--r-- | users/grfn/system/system/modules/wireshark.nix | 5 |
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 0bc1d8f04ab4..30658419fc93 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" ]; } |