Files
nixos/hosts/wsl/default.nix
T
2023-07-12 13:56:45 -05:00

12 lines
162 B
Nix

{ pkgs, ... }:
{
wsl = {
enable = true;
wslConf.automount.root = "/mnt";
defaultUser = "greg";
startMenuLaunchers = true;
nativeSystemd = true;
};
}