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

15 lines
281 B
Nix

{pkgs, ...}: {
programs = {
chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
};
firefox = {
enable = true;
profiles.panotaka = {};
};
};
}