nix-config/home/programs/web/chromium.nix

14 lines
279 B
Nix
Raw Normal View History

2025-03-27 14:59:12 +01:00
{
pkgs,
config,
...
}: {
programs.chromium = {
enable = true;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
extensions = [
# {id = "";} // extension id, query from chrome web store
];
};
}