15 lines
255 B
Nix
15 lines
255 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
programs.chromium = {
|
|
enable = true;
|
|
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
|
|
extensions = [
|
|
# {id = "";} // extension id, query from chrome web store
|
|
];
|
|
};
|
|
}
|