Files
nix-config/home/programs/browsers.nix
2024-08-16 10:55:54 +08:00

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