Files
nixos-config/home/programs/zathura.nix
Elias Schröter e0fb822650 theme collect & kitty & wallpaper & yazi
Collect all catppuccin theme settings together, set wallpaper using
wpapderd, change console to kitty and install yazi
2026-03-18 11:25:55 +01:00

15 lines
255 B
Nix

{ ... }:
{
programs.zathura = {
enable = true;
options = {
synctex-editor-command = ''
nvim --headless -c "VimtexInverseSearch %l '%f'"
''; # include ${theme}
synctex = true;
font = "Fira Code 16";
};
};
}