Collect all catppuccin theme settings together, set wallpaper using wpapderd, change console to kitty and install yazi
15 lines
255 B
Nix
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";
|
|
};
|
|
};
|
|
}
|