refactor(modules/games): now using the same arch from services

This commit is contained in:
Raphael 2025-10-09 00:37:35 +02:00 committed by Raphaël
parent 0cd8633d04
commit 14f69827ef

View file

@ -1,38 +0,0 @@
{
config,
pkgs,
lib,
...
}:
let
lutris = import ./lutris.nix {
inherit config pkgs lib;
};
cfg = config.games;
in
{
imports = [
lutris
];
options.games = {
steam = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable steam installation";
};
bp = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable the autostart of steam in big picture";
};
};
lutris = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable lutris";
};
};
}