diff options
author | makefu <github@syntax-fehler.de> | 2017-10-03 15:43:46 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-10-03 15:43:46 +0200 |
commit | d5cd048bc3b9d541e93d7e2c4ac499b4c6fc759b (patch) | |
tree | 7486be776277bcc9ad31dab6dcc4fe078ecae873 | |
parent | 6513f6a8233e7b542015199388a149642e6a50eb (diff) |
ma tools: use wireshark from options
-rw-r--r-- | makefu/2configs/tools/sec-gui.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/makefu/2configs/tools/sec-gui.nix b/makefu/2configs/tools/sec-gui.nix index 2db3e4391..95f130ae8 100644 --- a/makefu/2configs/tools/sec-gui.nix +++ b/makefu/2configs/tools/sec-gui.nix @@ -1,8 +1,15 @@ { pkgs, ... }: { - krebs.per-user.makefu.packages = with pkgs; [ - tpmmanager - wireshark - ]; + users.users.makefu = { + extraGroups = [ "wireshark" ]; + packages = with pkgs; [ + tpmmanager + ]; + }; + + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + }; } |