dot.nix/home/global/common/zen.nix
Chris Toph 3523b82392 Configuration Cleanup
- Removed inaccurate comments
- Refactored browsers to independent nixes
- Small code changes for clarity
2025-05-29 15:25:49 -04:00

18 lines
340 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
home.packages = [
inputs.zen-browser.packages.${pkgs.system}.default
];
xdg.mimeApps.defaultApplications = {
"text/html" = [ "zen.desktop" ];
"text/xml" = [ "zen.desktop" ];
"x-scheme-handler/http" = [ "zen.desktop" ];
"x-scheme-handler/https" = [ "zen.desktop" ];
};
}