ma steam: fix startup
reference: https://github.com/NixOS/nixpkgs/issues/25957
This commit is contained in:
parent
265bfe7949
commit
e03866490e
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
Loading…
Reference in a new issue