24 lines
400 B
Nix
24 lines
400 B
Nix
{
|
|
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} = {};
|
|
};
|
|
|
|
thunderbird.enable = true;
|
|
};
|
|
}
|