feat: update nix everything

This commit is contained in:
Jet Pham 2025-09-14 23:49:00 -07:00
parent 5aab8c53d1
commit c0ae8fcbd2
No known key found for this signature in database
3 changed files with 32 additions and 13 deletions

View file

@ -84,8 +84,25 @@
nmap
handbrake
orca-slicer
# OpenCL runtime and hashcat for password recovery
hashcat
pocl # Portable Computing Language - better for AMD CPUs
ocl-icd # OpenCL Installable Client Driver
clinfo # OpenCL information tool for debugging
fontforge-gtk
];
# OpenCL configuration for hashcat using PoCL
home.file.".config/OpenCL/vendors/pocl.icd".text = ''
${pkgs.pocl}/lib/libpocl.so
'';
# Set environment variables for OpenCL
home.sessionVariables = {
OCL_ICD_VENDORS = "/etc/OpenCL/vendors";
POCL_DEVICES = "cpu";
};
programs.helix = {
enable = true;
defaultEditor = true;