Jafner.net/nix/nixos/steam.nix
Joey Hafner bad7b9c8ed
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
Update from joey@joey-laptop: Add steam
2024-09-14 17:10:57 -07:00

8 lines
141 B
Nix

{ pkgs, ... }:
{
hardware.opengl.driSupport32Bit = true;
programs.steam.enable = true;
environment.systemPackages = [ pkgs.steam ];
}