{ pkgs, nixpkgs, ... }: let x86_64-linux-pkgs = import nixpkgs {system = "x86_64-linux";}; in { home.packages = with pkgs; [ x86_64-linux-pkgs.anki-bin mdcat gimp krita ffmpeg-full audacious ]; xdg.configFile."gdb/gdbinit".text = "set auto-load safe-path /nix/store"; services.xsettingsd = { 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"; }; }; }