mirror of
https://github.com/RGBCube/ncc
synced 2026-01-15 09:41:04 +00:00
10 lines
254 B
Nix
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
|
|
];
|
|
}
|