nixos-config/2configs/tools/steam.nix

11 lines
199 B
Nix
Raw Normal View History

2016-06-02 14:45:10 +02:00
{pkgs, ...}:
{
users.users.makefu.packages = [
(pkgs.steam.override {
newStdcpp = true;
})
];
2016-06-02 14:45:10 +02:00
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
}