restart git repo

This commit is contained in:
Jeeves 2024-06-24 12:54:49 -06:00
commit 8a816b5e85
16 changed files with 1458 additions and 0 deletions

13
os/windows/batch.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs }: {
stuff = {};
genBatchScript = {
name,
commands,
}: let
# commandsString = pkgs.lib.strings.concatStringsSep "\r\n" commands;
in pkgs.lib.strings.concatStringsSep "\r\n" [
"@echo off"
commands
];
}