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