dot_testing/home/zathura/default.nix

9 lines
157 B
Nix
Raw Permalink Normal View History

2023-12-21 15:26:09 -06:00
{ lib, config, pkgs, home, ... }:
{
programs.zathura = {
enable = true;
2024-04-06 17:29:20 -05:00
extraConfig = (builtins.readFile ../../.config/zathura/zathurarc);
2023-12-21 15:26:09 -06:00
};
}