Removed game packages; removed binaryninja

This commit is contained in:
Random936
2025-11-10 20:38:33 -05:00
parent f36f414f51
commit b540cfd946
3 changed files with 10 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
{ lib, config, pkgs, ... }: let
mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; };
in {
{ lib, config, pkgs, ... }:
#let mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; }; in
{
# Hacking specific packages.
home.packages = (with pkgs; [
home.packages = with pkgs; [
gdb
yara
nmap
@@ -36,8 +36,8 @@ in {
seclists
];
})
]) ++ (with mypkgs; [
binaryninja
]);
];
#++ (with mypkgs; [
# binaryninja
#]);
}