mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-26 07:02:03 +00:00
14 lines
266 B
Nix
14 lines
266 B
Nix
{ lib, pkgs, config, modulesPath, ... }:
|
|
{
|
|
wsl = {
|
|
enable = true;
|
|
automountPath = "/mnt";
|
|
defaultUser = "sstent";
|
|
startMenuLaunchers = true;
|
|
compatibility.interopPreserveArgvZero = true;
|
|
};
|
|
|
|
mymods = {
|
|
user_sstent.enable = true;
|
|
};
|
|
} |