18 lines
296 B
Nix
18 lines
296 B
Nix
{ pkgs
|
|
, config
|
|
, ...
|
|
}: {
|
|
programs = {
|
|
chromium = {
|
|
enable = true;
|
|
package = pkgs.ungoogled-chromium;
|
|
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
|
|
};
|
|
|
|
firefox = {
|
|
enable = true;
|
|
profiles.panotaka = { };
|
|
};
|
|
};
|
|
}
|