users/plover: add Wireshark program

This commit is contained in:
Gabriel Arazas 2023-02-11 15:24:04 +08:00
parent 93863ff00c
commit 70e2e077d1
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -9,7 +9,7 @@ in
users.users.${user} = {
home = "/home/${user}";
hashedPassword = "$6$gpgBrL3.RAGa9NBp$93Ac5ZW53KcgbA9q4awVKA.bVArP7Hw1NbyakT30Mav.7obIuN17WWijT.EaBSJU6ArvdXTehC3xZ9/9oZPDR0";
extraGroups = [ "wheel" ];
extraGroups = [ "wheel" "wireshark" ];
useDefaultShell = true;
isNormalUser = true;
description = "The go-to user for server systems.";
@ -21,6 +21,8 @@ in
];
};
programs.wireshark.enable = true;
home-manager.users.${user} = { lib, ... }: {
imports = [ homeManagerUser ];
};