11 lines
129 B
Nix
11 lines
129 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.zathura = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./zathurarc;
|
|
};
|
|
}
|