summaryrefslogtreecommitdiff
path: root/home-manager/wayland
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/wayland')
-rw-r--r--home-manager/wayland/modules/zathura.nix8
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";
};
};
}