nixos-config/configurations/steam.nix
Charlotte Van Petegem 1d6086f69e Add steam
2020-09-01 11:44:58 +02:00

13 lines
279 B
Nix

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