add chrome browser
This commit is contained in:
parent
020ce7efda
commit
7287cd98c0
1 changed files with 8 additions and 2 deletions
|
@ -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 = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue