summaryrefslogtreecommitdiff
path: root/home-manager/wayland
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-04-30 18:03:04 +0530
committersinanmohd <sinan@sinanmohd.com>2024-04-30 18:03:09 +0530
commit178d2590b9cc929c6a0b9a87993a4aeeba640874 (patch)
tree7cd0f0d3cac597279b15661717b6301de09c0f42 /home-manager/wayland
parent50d68d99878580424d09f7876e5b6a379a0573a6 (diff)
home-manager/cez/zathura: set font size
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";
};
};
}