Files
nixos-config/home/programs/browsers.nix
2023-11-21 00:39:36 -04:00

20 lines
348 B
Nix

{ pkgs
, config
, ...
}: {
programs = {
chromium = {
enable = true;
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
extensions = [
# {id = "";} // extension id, query from chrome web store
];
};
firefox = {
enable = true;
profiles.ryan = { };
};
};
}