2023-12-15 17:58:49 +00:00
|
|
|
{ lib, ... }:
|
|
|
|
let
|
|
|
|
settings = import ./../settings.nix;
|
|
|
|
in
|
2023-12-08 15:05:53 +00:00
|
|
|
{
|
2023-12-15 17:58:49 +00:00
|
|
|
# Optionally import modules for game launchers, games or compatability layers
|
|
|
|
imports =
|
|
|
|
lib.optionals settings.games.prismlauncher [ ./prismlauncher.nix ]
|
|
|
|
++ lib.optionals settings.games.steam [ ./steam.nix ];
|
2023-12-08 15:05:53 +00:00
|
|
|
}
|