diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/system/machines/ogopogo.nix | 1 | ||||
-rw-r--r-- | users/grfn/system/system/modules/wireshark.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/users/grfn/system/system/machines/ogopogo.nix b/users/grfn/system/system/machines/ogopogo.nix index 06815d136c5e..f51ffd285870 100644 --- a/users/grfn/system/system/machines/ogopogo.nix +++ b/users/grfn/system/system/machines/ogopogo.nix @@ -9,6 +9,7 @@ ../modules/sound.nix ../modules/tvl.nix ../modules/development.nix + ../modules/wireshark.nix ../modules/work/kolide.nix ]; diff --git a/users/grfn/system/system/modules/wireshark.nix b/users/grfn/system/system/modules/wireshark.nix new file mode 100644 index 000000000000..0bc1d8f04ab4 --- /dev/null +++ b/users/grfn/system/system/modules/wireshark.nix @@ -0,0 +1,6 @@ +{ config, lib, pkgs, ... }: + +{ + programs.wireshark.enable = true; + users.users.grfn.extraGroups = [ "wireshark" ]; +} |