dot.nix/home/global/common/browsers/zen.nix
Chris Toph 270ebded3d Refactor config paths & update host imports
• Relocates common configurations from a user-specific directory to a global hierarchy
• Adds host-specific files and updates import paths for better modularity
• Introduces an experimental GNOME mutter feature
2025-05-27 14:44:19 -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" ];
};
}