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

10 lines
254 B
Nix

{ config, pkgs, lib, ... }: let
inherit (lib) merge mkIf;
in merge <| mkIf config.isDesktop {
# Steam uses 32-bit drivers for some unholy fucking reason.
hardware.graphics.enable32Bit = true;
environment.systemPackages = [
pkgs.steam
];
}