Add WSL2 target for builds

This commit is contained in:
Greg Hellings
2022-12-28 15:41:09 -06:00
parent b1e7d952d0
commit 6e7f5ae446
3 changed files with 75 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
wsl = {
enable = true;
wslConf.automount.root = "/mnt";
defaultUser = "greg";
startMenuLaunchers = true;
};
}