add some cli tools

This commit is contained in:
Kopatz
2024-02-26 15:16:45 +01:00
parent 8466977f03
commit 6eb80cdd14
4 changed files with 14 additions and 2 deletions

View File

@@ -156,6 +156,7 @@
./modules/graphical/ime.nix
./modules/graphical/code.nix
./modules/graphical/shared.nix
./modules/fh/forensik.nix
./systems/laptop/configuration.nix
./modules/cli-tools.nix
./modules/virt-manager.nix

View File

@@ -198,8 +198,8 @@
"$mainMod, mouse_down, workspace, e+1"
"$mainMod, mouse_up, workspace, e-1"
"ALT, Tab, cyclenext,"
"ALT, Tab, bringactivetotop,"
# "ALT, Tab, cyclenext,"
# "ALT, Tab, bringactivetotop,"
];
bindm = [

View File

@@ -18,5 +18,7 @@
nethogs
dig
smartmontools
bc
xxd
];
}

9
modules/fh/forensik.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ...} :
{
environment.systemPackages = with pkgs; [
regripper
volatility3
foremost
binwalk
];
}