nix-config/home/programs/browsers.nix

22 lines
368 B
Nix
Raw Normal View History

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} = {};
};
};
}