feat: update nix everything
This commit is contained in:
parent
5aab8c53d1
commit
c0ae8fcbd2
3 changed files with 32 additions and 13 deletions
17
home.nix
17
home.nix
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue