ma steam: fix startup

reference: https://github.com/NixOS/nixpkgs/issues/25957
This commit is contained in:
makefu 2017-09-09 20:58:36 +02:00
parent 265bfe7949
commit e03866490e
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,10 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
krebs.per-user.makefu.packages = with pkgs; [ imports = [
steam ../steam.nix
];
users.users.makefu.packages = with pkgs; [
games-user-env games-user-env
]; ];
} }

View File

@ -1,6 +1,10 @@
{pkgs, ...}: {pkgs, ...}:
{ {
environment.systemPackages = [ pkgs.steam ]; environment.systemPackages = [
(pkgs.steam.override {
newStdcpp = true;
})
];
hardware.opengl.driSupport32Bit = true; hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true; hardware.pulseaudio.support32Bit = true;
} }