Files
nixos/hosts/wsl/default.nix
T

12 lines
162 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;
2023-07-12 13:56:45 -05:00
nativeSystemd = true;
2022-12-28 15:39:44 -06:00
};
}