mirror of
https://github.com/RGBCube/ncc
synced 2026-01-19 19:51:11 +00:00
8 lines
175 B
Nix
8 lines
175 B
Nix
{ pkgs, ... }: {
|
|
# Steam uses 32-bit drivers for some unholy fucking reason.
|
|
hardware.graphics.enable32Bit = true;
|
|
|
|
environment.systemPackages = [
|
|
pkgs.steam
|
|
];
|
|
}
|