Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
23 lines
481 B
Nix
23 lines
481 B
Nix
{
|
|
lib,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf osConfig.local.profiles.desktop.enable {
|
|
programs.zathura = {
|
|
enable = true;
|
|
options = {
|
|
font = "Inter 12";
|
|
selection-notification = true;
|
|
|
|
selection-clipboard = "clipboard";
|
|
adjust-open = "best-fit";
|
|
pages-per-row = "1";
|
|
scroll-page-aware = "true";
|
|
scroll-full-overlap = "0.01";
|
|
scroll-step = "100";
|
|
zoom-min = "10";
|
|
};
|
|
};
|
|
};
|
|
}
|