2022-05-11 18:35:11 +00:00
|
|
|
{ pkgs, lib, ... }: {
|
2022-04-10 07:35:12 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
ghidra
|
2022-04-11 13:20:46 +00:00
|
|
|
android-studio
|
2022-05-11 15:59:44 +00:00
|
|
|
thunderbird
|
2022-04-10 07:35:12 +00:00
|
|
|
];
|
2022-05-13 20:47:21 +00:00
|
|
|
xdg.configFile."gdb/gdbinit".text = "set auto-load safe-path /nix/store";
|
|
|
|
|
2022-04-10 07:35:12 +00:00
|
|
|
}
|