10 lines
180 B
Nix
10 lines
180 B
Nix
{ pkgs, tokyonight, ... }:
|
|
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile
|
|
"${tokyonight}/extras/zathura/tokyonight_night.zathurarc";
|
|
};
|
|
}
|