From f4b9629c06d3104bb38c64185a5404d24a8581e4 Mon Sep 17 00:00:00 2001 From: pegasust Date: Mon, 14 Nov 2022 15:39:36 -0700 Subject: [PATCH] remove some mounts --- .../profiles/Felia/hardware-configuration.nix | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/system-nix/profiles/Felia/hardware-configuration.nix b/system-nix/profiles/Felia/hardware-configuration.nix index 53223e4..37ce530 100644 --- a/system-nix/profiles/Felia/hardware-configuration.nix +++ b/system-nix/profiles/Felia/hardware-configuration.nix @@ -13,34 +13,33 @@ fileSystems."/" = { - device = "/dev/sdd"; + device = "/dev/sde"; fsType = "ext4"; }; + fileSystems."/mnt/wsl" = + { + device = "tmpfs"; + fsType = "tmpfs"; + }; + fileSystems."/mnt/wsl/docker-desktop/shared-sockets/guest-services" = { device = "none"; fsType = "tmpfs"; }; - - fileSystems."/usr/lib/wsl/drivers" = - { - device = "drivers"; - fsType = "drvfs"; - }; - - fileSystems."/usr/lib/wsl/lib" = - { - device = "lib"; - fsType = "drvfs"; - }; - - fileSystems."/mnt/wsl" = - { - device = "tmpfs"; - fsType = "tmpfs"; - }; + # fileSystems."/usr/lib/wsl/drivers" = + # { + # device = "drivers"; + # fsType = "drvfs"; + # }; + # + # fileSystems."/usr/lib/wsl/lib" = + # { + # device = "lib"; + # fsType = "drvfs"; + # }; fileSystems."/mnt/c" = {