14 lines
239 B
Nix
14 lines
239 B
Nix
|
{ pkgs }: {
|
||
|
stuff = {};
|
||
|
|
||
|
genBatchScript = {
|
||
|
name,
|
||
|
commands,
|
||
|
}: let
|
||
|
# commandsString = pkgs.lib.strings.concatStringsSep "\r\n" commands;
|
||
|
in pkgs.lib.strings.concatStringsSep "\r\n" [
|
||
|
"@echo off"
|
||
|
commands
|
||
|
];
|
||
|
}
|