From 14f69827ef5e3a696aaf42a8623db81565f489fe Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 9 Oct 2025 00:37:35 +0200 Subject: [PATCH] refactor(modules/games): now using the same arch from services --- modules/{games/global.nix => games.nix} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename modules/{games/global.nix => games.nix} (83%) diff --git a/modules/games/global.nix b/modules/games.nix similarity index 83% rename from modules/games/global.nix rename to modules/games.nix index 302d285..e258133 100644 --- a/modules/games/global.nix +++ b/modules/games.nix @@ -6,14 +6,17 @@ }: let - lutris = import ./lutris.nix { + steam = import ./games/steam.nix { + inherit config pkgs lib; + }; + lutris = import ./games/lutris.nix { inherit config pkgs lib; }; - cfg = config.games; in { imports = [ lutris + steam ]; options.games = {