32 lines
595 B
Nix
32 lines
595 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
|
||
|
# TODO: gamemode?
|
||
|
|
||
|
#services.joycond.enable = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
(lutris.override {
|
||
|
extraPkgs = pkgs: [
|
||
|
];
|
||
|
extraLibraries = pkgs: [
|
||
|
];
|
||
|
})
|
||
|
|
||
|
# ensure icons appear
|
||
|
gnome3.adwaita-icon-theme
|
||
|
hicolor-icon-theme #
|
||
|
|
||
|
# Needed for some installers like League of Legends
|
||
|
openssl
|
||
|
gnome.zenity
|
||
|
|
||
|
];
|
||
|
|
||
|
hardware.opengl.enable = true;
|
||
|
hardware.opengl.driSupport = true;
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
|
||
|
|
||
|
}
|