NixToSee/modules/game/server/luanti/mods.nix
2025-05-12 19:51:19 +02:00

11 lines
308 B
Nix

{ pkgs, config, ... }: let
GitMod = curl: pkgs.fetchgit rec {
url = curl;
fetchSubmodules = true;
deepClone = false;
leaveDotGit = false;
};
this-variable-should-exist = GitMod "https://gitlab.com/rubenwardy/accountmgr";
in {
config.tempDebugVar = break this-variable-should-exist;
}