dots/users/price/conf/zathura/default.nix
Price Hiller 4a94fb7a25
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m29s
refactor(hm/price): extract zathura to its own conf directory
2024-09-07 14:06:49 -05:00

12 lines
171 B
Nix

{ pkgs, ... }:
{
home.packages = [
pkgs.zathura
];
xdg.mimeApps.defaultApplications = {
"application/pdf" = [
"org.pwmt.zathura.desktop"
];
};
}