This commit is contained in:
TheWanderingCrow 2025-10-19 09:06:58 -04:00
parent 13b1ea31ed
commit 169a79a2d7
4 changed files with 12 additions and 1 deletions

View file

@ -6,6 +6,8 @@
}: {
programs.zsh = {
enable = true;
enableCompletion = true;
enableBashCompletion = true;
autosuggestions = {
enable = true;
async = true;

View file

@ -7,9 +7,11 @@
};
};
services.postgresql.enable = true; # for msf
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
(pkgs.unstable)
metasploit
exploitdb
termshark

View file

@ -56,6 +56,10 @@
enableIPv6 = false;
};
environment.systemPackages = with pkgs; [
networkmanagerapplet
];
boot.loader = {
systemd-boot.enable = true;
efi = {

View file

@ -16,4 +16,7 @@
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
hardware.graphics.extraPackages = with pkgs; [
rocmPackages.clr.icd
];
}