2025-03-24 12:11:44 +01:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
username,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
programs = {
|
|
|
|
chromium = {
|
|
|
|
enable = true;
|
|
|
|
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
|
|
|
|
extensions = [
|
|
|
|
# {id = "";} // extension id, query from chrome web store
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
firefox = {
|
|
|
|
enable = true;
|
|
|
|
profiles.${username} = {};
|
|
|
|
};
|
2025-03-26 16:16:42 +01:00
|
|
|
|
2025-03-26 22:08:40 +01:00
|
|
|
#thunderbird.enable = true;
|
2025-03-24 12:11:44 +01:00
|
|
|
};
|
|
|
|
}
|