Files
nixos-config/home/desktop/browsers.nix
2023-11-25 00:23:05 -04:00

18 lines
296 B
Nix

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