chromium with hardware accel

This commit is contained in:
Tim Schubert 2021-08-17 18:30:43 +02:00
parent 3df49038a3
commit 6ab7a2683f
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 12 additions and 2 deletions

View file

@ -10,7 +10,6 @@ with pkgs; [
aqbanking
bash
bluez-tools
chromium
clang
clang-tools
php74Packages.composer

View file

@ -75,7 +75,10 @@ in
adminCredentialsFile = "/var/lib/miniflux/admin-credentials";
};
environment.systemPackages = [ pkgs.ghostscript ];
environment.systemPackages = with pkgs; [
chromium
ghostscript
];
networking.firewall = {
enable = true;
@ -111,5 +114,13 @@ in
"10.1.2.9" = [ "fgprinter.fginfo.tu-bs.de" ];
};
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [
vaapiVdpau
libvdpau-va-gl
];
};
system.stateVersion = "20.03";
}