dotfiles/home/features/desktop/common/wayland-wm/zathura.nix

10 lines
189 B
Nix
Raw Normal View History

2023-09-29 14:16:09 +00:00
{ config, ... }: {
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
font = "${config.fontProfiles.regular.family} 12";
};
};
}