mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
14 lines
338 B
Nix
14 lines
338 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options.mods.server.gaming = {
|
|
enable = lib.mkEnableOption {
|
|
default = false;
|
|
description = "enables gaming servers";
|
|
};
|
|
};
|
|
|
|
imports = [ ./astral.nix ./vrising.nix ./statech.nix ];
|
|
|
|
config = lib.mkIf config.mods.server.gaming.enable {
|
|
mods.server.astral.enable = true;
|
|
};
|
|
}
|