add chrome browser

This commit is contained in:
Chris Kruining 2025-03-02 16:18:45 +01:00
parent 020ce7efda
commit 7287cd98c0

View file

@ -16,8 +16,14 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = [ environment.systemPackages = with pkgs; [
pkgs.ungoogled-chromium (ungoogled-chromium.override {
commandLineArgs = [
"--enable-features=AcceleratedVideoEncoder"
"--ignore-gpu-blocklist"
"--enable-zero-copy"
];
});
]; ];
programs.chromium = { programs.chromium = {