aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/wireshark
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profiles/wireshark')
-rw-r--r--modules/profiles/wireshark/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/profiles/wireshark/default.nix b/modules/profiles/wireshark/default.nix
index ab741ff..6b3dd3d 100644
--- a/modules/profiles/wireshark/default.nix
+++ b/modules/profiles/wireshark/default.nix
@@ -7,6 +7,9 @@
# Add any users in the 'wheel' group to the 'wireshark' group.
users.groups.wireshark.members =
- with builtins; let users = config.users.users; in
- filter (u: elem "wheel" users.${u}.extraGroups) (attrNames users);
+ with builtins;
+ let
+ users = config.users.users;
+ in
+ filter (u: elem "wheel" users.${u}.extraGroups) (attrNames users);
}