{ config, options, lib, pkgs, rootPath, ... }: let luantiConf = config.modules.desktop.apps.games.luanti; configDir = config.nixosConfig.configDir; in { options.modules.desktop.apps.games.luanti = { enable = lib.mkOption { type = lib.types.bool; default = false; }; }; config = lib.mkIf (luantiConf.enable) { home.packages = with pkgs; [ luanti ]; }; }