From 716ba3651a0978dff908dfb0b8389cf632cf963b Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 27 Jan 2022 21:46:48 -0700 Subject: [PATCH] [NixOS] Disable steam --- nixos/games.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/games.nix b/nixos/games.nix index ae5e5dff..472ee170 100644 --- a/nixos/games.nix +++ b/nixos/games.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - steam + # steam ]; boot.extraModulePackages = with pkgs; [ xboxdrv ]; }