Add steam

This commit is contained in:
Charlotte Van Petegem 2020-09-01 11:44:58 +02:00
parent c3b19137d3
commit 1d6086f69e
2 changed files with 14 additions and 0 deletions

13
configurations/steam.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
hardware = {
opengl = {
driSupport32Bit = true;
extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
};
pulseaudio.support32Bit = true;
};
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.steam ];
};
}