Add ghidra, wireshark
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
7
hosts/common/configs/user/gui/ghidra/default.nix
Normal file
7
hosts/common/configs/user/gui/ghidra/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ user, home }:
|
||||
{ ... }:
|
||||
{
|
||||
programs.ghidra.enable = true;
|
||||
|
||||
environment.persistence."/persist/state"."${home}/.config/ghidra" = { };
|
||||
}
|
15
hosts/common/configs/user/gui/wireshark/default.nix
Normal file
15
hosts/common/configs/user/gui/wireshark/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ user, home }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.wireshark = {
|
||||
enable = true;
|
||||
dumpcap.enable = true;
|
||||
usbmon.enable = true;
|
||||
};
|
||||
|
||||
users.users.${user}.extraGroups = [ "wireshark" ];
|
||||
|
||||
environment.persistence."/persist/state"."${home}/.config/wireshark" = { };
|
||||
|
||||
home-manager.users.${user}.home.packages = with pkgs; [ wireshark ];
|
||||
}
|
@@ -70,6 +70,7 @@ in
|
||||
(import ../../../common/configs/user/gui/gaming/prismlauncher { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/gaming/proton { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/gaming/wivrn { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/ghidra { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/gtk { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/hypridle { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/hyprland { inherit user home; })
|
||||
@@ -93,6 +94,7 @@ in
|
||||
(import ../../../common/configs/user/gui/transmission { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/vscode { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/wev { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/wireshark { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/wl-clipboard { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/x11 { inherit user home; })
|
||||
(import ../../../common/configs/user/gui/xdg { inherit user home; })
|
||||
|
Reference in New Issue
Block a user