mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:54:28 +01:00
20 lines
348 B
Nix
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 = {};
|
|
};
|
|
};
|
|
} |