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" = {