From 5907aaf615436aef7b193e748d985a9ab4d9354e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 29 Nov 2022 00:58:51 -0500 Subject: [PATCH] nit(Infini-WSL): automountPath -> wslConf.automount.root Was renamed upstream --- hosts/Infini-WSL/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/Infini-WSL/default.nix b/hosts/Infini-WSL/default.nix index d03162f..4be9644 100644 --- a/hosts/Infini-WSL/default.nix +++ b/hosts/Infini-WSL/default.nix @@ -11,7 +11,9 @@ # I don't use Windows, but when I do, I want NixOS there with me, wsl = { enable = true; - automountPath = "/media"; + wslConf = { + automount.root = "/media"; + }; startMenuLaunchers = true; };