feat: add more useful packages

This commit is contained in:
ryan4yin
2023-05-06 14:57:46 +08:00
parent ea35e5dc49
commit 4f4bccbb59
9 changed files with 135 additions and 19 deletions

View File

@@ -3,18 +3,22 @@
config,
...
}: {
programs = {
chromium = {
enable = true;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
extensions = [
# {id = "";} // extension id, query from chrome web store
];
};
home.packages = with pkgs; [
# use wayland version of firefox
firefox-wayland
];
firefox = {
enable = true;
profiles.ryan = {};
programs = {
let commandLineArgs = [ "--enable-wayland-ime" "--ozone-platform=wayland" ];
in {
chromium = {
enable = true;
inherit commandLineArgs;
};
google-chrome = {
enable = true;
inherit commandLineArgs;
};
};
};
}