refactor: move utils to a separate file

This commit is contained in:
Sweetbread 2025-04-18 02:52:44 +03:00
parent a84a509cf8
commit 24f013c765
Signed by: Sweetbread
GPG Key ID: 17A5CB9A7DD85319
2 changed files with 11 additions and 3 deletions

View File

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
burpsuite
binwalk
exiftool
];
}

View File

@ -1,10 +1,11 @@
{ pkgs, pkgs-fixed, host, ... }: {
imports = [
../../modules/user/packages/cs_utils.nix
];
disabledModules = [ ../../modules/user/packages/coding.nix ];
home.packages = with pkgs; [
nautilus
burpsuite
binwalk
exiftool
python3
pkgs-fixed.jetbrains.pycharm-community
];