nixos-config/config/programs/misc.nix

33 lines
775 B
Nix
Raw Normal View History

2023-01-13 16:15:00 +00:00
{
pkgs,
nixpkgs,
...
}: let
x86_64-linux-pkgs = import nixpkgs {system = "x86_64-linux";};
in {
2022-04-10 07:35:12 +00:00
home.packages = with pkgs; [
2023-01-13 16:15:00 +00:00
x86_64-linux-pkgs.anki-bin
2022-08-14 15:05:00 +00:00
mdcat
2022-11-17 14:58:05 +00:00
gimp
krita
ffmpeg-full
audacious
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
}