dotfiles/home/features/desktop/common/wayland-wm/zathura.nix
2023-09-29 09:16:09 -05:00

9 lines
189 B
Nix

{ config, ... }: {
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
font = "${config.fontProfiles.regular.family} 12";
};
};
}