12 lines
162 B
Nix
12 lines
162 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
wsl = {
|
|
enable = true;
|
|
wslConf.automount.root = "/mnt";
|
|
defaultUser = "greg";
|
|
startMenuLaunchers = true;
|
|
nativeSystemd = true;
|
|
};
|
|
}
|