graphics: use renamed graphics options (from opengl)

This commit is contained in:
Charlotte Van Petegem 2024-06-23 11:53:32 +02:00
parent 158a43cc72
commit c47d70a7a9
No known key found for this signature in database
GPG key ID: 019E764B7184435A
4 changed files with 21 additions and 17 deletions

View file

@ -7,8 +7,8 @@
};
config = lib.mkIf config.chvp.games.steam.enable {
hardware.opengl = {
driSupport32Bit = true;
hardware.graphics = {
enable32Bit = true;
extraPackages = with pkgs.pkgsi686Linux; [ libva ];
};
services.pipewire.alsa.support32Bit = true;

View file

@ -20,7 +20,7 @@
];
# Needs to be here, since a headless server probably doesn't have this enabled yet.
hardware.opengl.enable = true;
hardware.graphics.enable = true;
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.zeroad ];
};