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"; + }; + }; +}