wild hacking

This commit is contained in:
Ranomier 2025-05-12 19:51:19 +02:00
parent 66072b1d6e
commit 3efa686d83
4 changed files with 29 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{
imports = [
./luanti.nix
#./mods.nix
./postgresql.nix
];
}

View file

@ -0,0 +1,11 @@
{ 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;
}