feat(home): Configure dark mode for zathura

This commit is contained in:
Alexander Kobjolke 2024-03-19 23:31:01 +01:00
parent f1858a4823
commit 717ea0944a
3 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
config.programs.zathura = {
enable = true;
extraConfig = builtins.readFile ./gruvbox-dark.zathurarc;
};
}