dotfiles/homes/x86_64-linux/christopher@cobalt/misc/browser.nix
2025-11-17 01:01:46 +01:00

19 lines
379 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
firefox
];
xdg.mimeApps = {
enable = true;
defaultApplications = {
"x-scheme-handler/http" = "open-url.desktop";
"x-scheme-handler/https" = "open-url.desktop";
};
};
# profile-sync-daemon manages browser profiles in tmpfs
services.psd = {
enable = false;
# resyncTimer = "10m";
};
}