restart git repo
This commit is contained in:
commit
8a816b5e85
16 changed files with 1458 additions and 0 deletions
13
os/windows/batch.nix
Normal file
13
os/windows/batch.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue