9 lines
157 B
Nix
9 lines
157 B
Nix
{ lib, config, pkgs, home, ... }:
|
|
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
extraConfig = (builtins.readFile ../../.config/zathura/zathurarc);
|
|
};
|
|
}
|