nixos-config/config/programs/misc.nix

33 lines
753 B
Nix
Raw Normal View History

2023-01-13 17:15:00 +01:00
{
pkgs,
nixpkgs,
...
}: let
x86_64-linux-pkgs = import nixpkgs {system = "x86_64-linux";};
in {
2022-04-10 08:35:12 +01:00
home.packages = with pkgs; [
2024-06-17 21:32:10 +02:00
anki
2022-08-14 16:05:00 +01:00
mdcat
2022-11-17 15:58:05 +01:00
gimp
krita
ffmpeg-full
2024-01-07 10:20:15 +01:00
audacious
2022-04-10 08:35:12 +01:00
];
2022-05-13 21:47:21 +01:00
xdg.configFile."gdb/gdbinit".text = "set auto-load safe-path /nix/store";
2022-05-15 08:22:12 +01:00
services.xsettingsd = {
2022-05-15 07:18:54 +01: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 08:35:12 +01:00
}