7 lines
222 B
PowerShell
7 lines
222 B
PowerShell
#!/bin/pwsh
|
|
$env:WIN_COMPUTER_NAME ??= "win11";
|
|
$env:SETUP_SCRIPT_NAME ??= "$PSScriptRoot/Install.ps1";
|
|
$env:CONFIG_MODULE ??= "$PSScriptRoot/../config.nix";
|
|
|
|
. "$PSScriptRoot/../../../../../scripts/Windows/OS/Setup.ps1";
|