nixos-config/config/programs/misc.nix

10 lines
183 B
Nix
Raw Normal View History

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
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
}