dotfiles/modules/desktop/apps/zathura.nix

14 lines
254 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
2022-04-23 17:31:50 +02:00
home-manager.users.moritz.programs.zathura = {
enable = true;
options = {
recolor = true;
adjust-open = "width";
font = "Jetbrains Mono 9";
selection-clipboard = "clipboard";
2021-09-09 21:55:28 +02:00
};
};
2021-11-11 18:34:54 +01:00
}