diff options
Diffstat (limited to 'home-manager/wayland/modules/zathura.nix')
-rw-r--r-- | home-manager/wayland/modules/zathura.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home-manager/wayland/modules/zathura.nix b/home-manager/wayland/modules/zathura.nix index f7b7e4d..6751f32 100644 --- a/home-manager/wayland/modules/zathura.nix +++ b/home-manager/wayland/modules/zathura.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ lib, ... }: { programs.zathura = { enable = true; @@ -7,9 +7,9 @@ "[fullscreen] f" = "toggle_fullscreen"; }; options = { - "font" = "Sans"; - "statusbar-basename" = true; - "selection-clipboard" = "clipboard"; + font = lib.mkDefault "Sans"; + statusbar-basename = true; + selection-clipboard = "clipboard"; }; }; } |