This commit is contained in:
Morten Olsen
2023-09-12 08:28:05 +02:00
commit 6a41699dc3
69 changed files with 2040 additions and 0 deletions

19
user/overlays/steam.nix Normal file
View File

@@ -0,0 +1,19 @@
self: super:
{
steam = super.steam.override {
extraPkgs = p: [
self.gtk3
self.atk
self.at-spi2-atk
self.zlib
self.glib
self.fontconfig
self.freetype
self.dbus
self.cairo
self.gdk-pixbuf
self.pango
self.xorg.libxcb
];
};
}