11 lines
195 B
Nix
11 lines
195 B
Nix
{ ... }: {
|
|
flake.homeModules.commonFeatureZathura = { ... }: {
|
|
programs.zathura = {
|
|
enable = true;
|
|
options = {
|
|
selection-clipboard = "clipboard";
|
|
};
|
|
};
|
|
};
|
|
}
|