NixOS/home/programs/zathura.nix

15 lines
240 B
Nix
Raw Normal View History

2024-06-19 16:56:10 +07:00
{ config, lib, ... }:
let
cfg = config.profile.home.programs.zathura;
in
{
config = lib.mkIf cfg.enable {
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
};
2024-06-19 16:56:10 +07:00
};
};
}