feat(home): Configure dark mode for zathura

This commit is contained in:
Alexander Kobjolke 2024-03-19 23:31:01 +01:00
parent 4be769b23f
commit 21bb4d0dc9
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;
};
}