feat: configure zathura with home manager

This commit is contained in:
2025-09-02 09:11:59 -04:00
parent 09385d2e45
commit 3b81fd3293
3 changed files with 11 additions and 2 deletions

View File

@@ -83,8 +83,6 @@ in
pinentry-curses pinentry-curses
pinentry-qt pinentry-qt
zathura
fzf fzf
ffmpeg ffmpeg
ripgrep ripgrep

View File

@@ -10,6 +10,7 @@
./home/desktop.nix ./home/desktop.nix
./home/nvim.nix ./home/nvim.nix
./home/terminal.nix ./home/terminal.nix
./home/zathura.nix
]; ];
home.username = "max"; home.username = "max";

10
host/max/home/zathura.nix Normal file
View File

@@ -0,0 +1,10 @@
{ ... }: {
programs.zathura = {
enable = true;
options = {
default-bg = "white";
font = "Monocraft";
selection-clipboard = "clipboard";
};
};
}