dot_testing/home/zathura/default.nix

9 lines
137 B
Nix
Raw Normal View History

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