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, ... }:
|
||||
|
||||
{
|
||||
krebs.per-user.makefu.packages = with pkgs; [
|
||||
steam
|
||||
imports = [
|
||||
../steam.nix
|
||||
];
|
||||
users.users.makefu.packages = with pkgs; [
|
||||
games-user-env
|
||||
];
|
||||
}
|
||||
|
@ -1,6 +1,10 @@
|
||||
{pkgs, ...}:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.steam ];
|
||||
environment.systemPackages = [
|
||||
(pkgs.steam.override {
|
||||
newStdcpp = true;
|
||||
})
|
||||
];
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
hardware.pulseaudio.support32Bit = true;
|
||||
}
|
Loading…
Reference in New Issue
Block a user