Files
vmimages/hosts/wsl2/default.nix
2023-02-19 14:05:48 -05:00

16 lines
300 B
Nix

{ lib, pkgs, config, modulesPath, ... }:
{
system.stateVersion = "22.05";
wsl = {
enable = true;
automountPath = "/mnt";
defaultUser = "sstent";
startMenuLaunchers = true;
compatibility.interopPreserveArgvZero = true;
};
mymods = {
user_sstent.enable = true;
};
}