This commit is contained in:
2023-02-18 17:23:23 -05:00
parent 2b45edc5cc
commit 6aab1d3443
2 changed files with 39 additions and 1 deletions

14
hosts/wsl2/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{ lib, pkgs, config, modulesPath, ... }:
{
wsl = {
enable = true;
automountPath = "/mnt";
defaultUser = "sstent";
startMenuLaunchers = true;
compatibility.interopPreserveArgvZero = true;
};
mymods = {
user_sstent.enable = true;
};
}