From 618e817c86e36f9563bbc8887b207f4536cb5d2b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 1 Nov 2019 09:27:31 +0800 Subject: [PATCH] rpi: enable wireshark --- nixops/rpi.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixops/rpi.nix b/nixops/rpi.nix index c09dcfe..5bca7f5 100644 --- a/nixops/rpi.nix +++ b/nixops/rpi.nix @@ -38,6 +38,8 @@ in networking.hostName = host; time.timeZone = "Asia/Hong_Kong"; + programs.wireshark.enable = true; + users.extraUsers.nix = { isNormalUser = true; }; @@ -51,7 +53,7 @@ in }; users.extraUsers.astro = { isNormalUser = true; - extraGroups = ["plugdev" "dialout"]; + extraGroups = ["plugdev" "dialout" "wireshark"]; openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGJJTSJdpDh82486uPiMhhyhnci4tScp5uUe7156MBC8 a"]; }; users.extraUsers.harry = {