dotfiles/homes/x86_64-linux/christopher@cobalt/misc/browser.nix
2025-08-09 01:14:14 +02:00

20 lines
388 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
firefox
vivaldi
];
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 = true;
resyncTimer = "10m";
};
}