nixos-config/config/programs/misc.nix

23 lines
626 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{pkgs, ...}: {
2022-04-10 07:35:12 +00:00
home.packages = with pkgs; [
ghidra
2022-04-11 13:20:46 +00:00
android-studio
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-05-15 07:22:12 +00:00
services.xsettingsd = {
2022-05-15 06:18:54 +00:00
enable = true;
settings = {
"Gtk/EnableAnimations" = 1;
"Gtk/DecorationLayout" = "icon:minimize,maximize,close";
"Gtk/PrimaryButtonWarpsSlider" = 0;
"Gtk/ToolbarStyle" = 3;
"Gtk/MenuImages" = 1;
"Gtk/ButtonImages" = 1;
"Gtk/CursorThemeSize" = 24;
"Gtk/CursorThemeName" = "breeze_cursors";
"Gtk/FontName" = "Noto Sans, 10";
"Net/IconThemeName" = "breeze-dark";
};
};
2022-04-10 07:35:12 +00:00
}