nix-config/home/programs/browsers.nix

24 lines
400 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} = {};
};
2025-03-26 16:16:42 +01:00
thunderbird.enable = true;
2025-03-24 12:11:44 +01:00
};
}