Files
nixos/hosts/wsl/default.nix
T

11 lines
138 B
Nix
Raw Normal View History

2022-12-28 15:39:44 -06:00
{ pkgs, ... }:
{
wsl = {
enable = true;
wslConf.automount.root = "/mnt";
defaultUser = "greg";
startMenuLaunchers = true;
};
}