hosts/anemone: add wireshark

This commit is contained in:
LavaDesu 2025-03-10 12:33:59 +11:00
parent c1c6c0102f
commit 920fb1971a
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 6 additions and 1 deletions

View file

@ -40,4 +40,9 @@
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
}

View file

@ -2,7 +2,7 @@
programs.zsh.enable = true;
users.users.rin = {
isNormalUser = true;
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" ];
extraGroups = [ "adbusers" "audio" "corectrl" "libvirtd" "networkmanager" "video" "wheel" "wireshark" ];
shell = pkgs.zsh;
uid = 1001;
passwordFile = config.age.secrets.passwd.path;