nixos/home/zathura/default.nix

10 lines
180 B
Nix
Raw Normal View History

2023-08-03 16:01:13 +01:00
{ pkgs, tokyonight, ... }:
{
programs.zathura = {
enable = true;
extraConfig = builtins.readFile
"${tokyonight}/extras/zathura/tokyonight_night.zathurarc";
};
}