nixos/services/games.nix
Raphael 51f952aa7b
feat(services/games): now prefix for games is games
- before was minecraft because only minecraft server
2025-10-02 11:46:03 +02:00

21 lines
375 B
Nix

{ inputs, config, pkgs, lib, ... }:
let
enium-pv = import ./games/minecraft.nix {
inherit inputs config pkgs lib;
};
cfg = config.service;
in
{
imports = [
enium-pv
];
options.service.games = {
enium-pv = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable enium private minecraft server";
};
};
}