aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-11-02 11:53:10 +0100
committerKarel Kočí <cynerd@email.cz>2022-11-02 11:53:10 +0100
commita5fcad4b9b05c29b85598758ea98ffa57b8e2385 (patch)
treee77de2b3ea2d9965df31c357c383fb5ab42ebb74 /nixos
parent6d36062fcd49fff7ca6f7dc9b4a40d2fcb48725e (diff)
downloadnixos-personal-a5fcad4b9b05c29b85598758ea98ffa57b8e2385.tar.gz
nixos-personal-a5fcad4b9b05c29b85598758ea98ffa57b8e2385.tar.bz2
nixos-personal-a5fcad4b9b05c29b85598758ea98ffa57b8e2385.zip
nixos/develop: allow wireshark to be used by me
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/develop.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix
index 335f2a3..ea73626 100644
--- a/nixos/modules/develop.nix
+++ b/nixos/modules/develop.nix
@@ -102,6 +102,7 @@ in {
# Documentation
man-pages man-pages-posix linux-manual
];
+ programs.wireshark.enable = true;
documentation.dev.enable = true;
@@ -124,7 +125,7 @@ in {
users.groups.develop = { };
users.users.cynerd.extraGroups = [
- "docker" "lxd" "develop" "libvirtd"
+ "docker" "lxd" "develop" "libvirtd" "wireshark"
];
};