Add forensics module

This commit is contained in:
Jordan Holt 2024-07-07 19:05:56 +01:00
parent 816c40ac68
commit 5013b46ef1
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
2 changed files with 27 additions and 0 deletions

View File

@ -3,6 +3,7 @@
./options.nix
./podman.nix
./desktop/gnome.nix
./desktop/forensics.nix
./desktop/hyprland.nix
./desktop/kde.nix
./desktop/mimeapps.nix

View File

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
let cfg = config.modules.desktop.forensics;
in {
options.modules.desktop.forensics = {
enable = lib.mkOption {
default = false;
example = true;
};
};
config = lib.mkIf cfg.enable {
user.packages = with pkgs; [
acquire
afflib
autopsy
fatcat
foremost
hstsparser
networkminer
sleuthkit
testdisk-qt
tracee
];
};
}