Files
nixos-config/home/desktop/browsers.nix

19 lines
379 B
Nix

{pkgs, ...}: {
programs = {
chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
};
firefox = {
enable = true;
profiles.panotaka = {
settings = {
"widget.use-xdg-desktop-portal.file-picker" = 1;
};
};
};
};
}