13 lines
238 B
Nix
13 lines
238 B
Nix
{pkgs, ...}: {
|
|
wsl = {
|
|
enable = true;
|
|
wslConf.automount.root = "/mnt";
|
|
defaultUser = "relms";
|
|
startMenuLaunchers = true;
|
|
nativeSystemd = true;
|
|
};
|
|
|
|
networking.hostName = "wsl";
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|