home/natto: split programs.nix

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-29 19:34:12 +05:30
parent 87a6c1a862
commit 5a9ff77a29
6 changed files with 63 additions and 41 deletions

19
home/natto/pdf.nix Normal file
View File

@@ -0,0 +1,19 @@
{ ... }:
{
programs = {
zathura = {
enable = true;
extraConfig = builtins.readFile ./config/zathura/zathurarc;
options = {
recolor = true;
recolor-lightcolor = "rgba(0,0,0,0)";
default-bg = "rgba(0,0,0,0.8)";
};
};
sioyek = {
enable = true;
};
};
}