forked from M-Labs/nix-scripts
set up wireshark
This commit is contained in:
parent
7487560b10
commit
87a664721b
|
@ -38,6 +38,7 @@
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
# programs.mtr.enable = true;
|
# programs.mtr.enable = true;
|
||||||
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
||||||
|
programs.wireshark.enable = true;
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
|
@ -67,12 +68,12 @@
|
||||||
users.extraGroups.plugdev = { };
|
users.extraGroups.plugdev = { };
|
||||||
users.extraUsers.sb = {
|
users.extraUsers.sb = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel" "plugdev" "dialout" "lp" "scanner"];
|
extraGroups = ["wheel" "plugdev" "dialout" "lp" "scanner" "wireshark"];
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
};
|
};
|
||||||
users.extraUsers.rj = {
|
users.extraUsers.rj = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel" "plugdev" "dialout"];
|
extraGroups = ["wheel" "plugdev" "dialout" "wireshark"];
|
||||||
uid = 1002;
|
uid = 1002;
|
||||||
};
|
};
|
||||||
users.extraUsers.nix = {
|
users.extraUsers.nix = {
|
||||||
|
|
Loading…
Reference in New Issue