From 3b81fd32938ee6ca1d388ea316973565b32d8f10 Mon Sep 17 00:00:00 2001 From: Max Koon Date: Tue, 2 Sep 2025 09:11:59 -0400 Subject: [PATCH] feat: configure zathura with home manager --- host/max/default.nix | 2 -- host/max/home.nix | 1 + host/max/home/zathura.nix | 10 ++++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 host/max/home/zathura.nix diff --git a/host/max/default.nix b/host/max/default.nix index 456a19b..619b842 100644 --- a/host/max/default.nix +++ b/host/max/default.nix @@ -83,8 +83,6 @@ in pinentry-curses pinentry-qt - zathura - fzf ffmpeg ripgrep diff --git a/host/max/home.nix b/host/max/home.nix index 5288c94..d4b9c1b 100644 --- a/host/max/home.nix +++ b/host/max/home.nix @@ -10,6 +10,7 @@ ./home/desktop.nix ./home/nvim.nix ./home/terminal.nix + ./home/zathura.nix ]; home.username = "max"; diff --git a/host/max/home/zathura.nix b/host/max/home/zathura.nix new file mode 100644 index 0000000..6c65ce4 --- /dev/null +++ b/host/max/home/zathura.nix @@ -0,0 +1,10 @@ +{ ... }: { + programs.zathura = { + enable = true; + options = { + default-bg = "white"; + font = "Monocraft"; + selection-clipboard = "clipboard"; + }; + }; +}