9 lines
176 B
Nix
9 lines
176 B
Nix
{ ... }: {
|
|
# a highly customizable and functional pdf viewer
|
|
programs.zathura = {
|
|
enable = true;
|
|
options = {
|
|
selection-clipboard = "clipboard";
|
|
};
|
|
};
|
|
}
|