1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-19 19:51:11 +00:00
ncc/modules/linux/steam.nix
2025-02-23 21:05:40 +03:00

8 lines
175 B
Nix

{ pkgs, ... }: {
# Steam uses 32-bit drivers for some unholy fucking reason.
hardware.graphics.enable32Bit = true;
environment.systemPackages = [
pkgs.steam
];
}