From 8ea9cbb602b459df4097d724070a67e32de7da2f Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sat, 30 Aug 2025 15:28:41 +0300 Subject: [PATCH] Disabled automatic mounting of E drive bcz it caused some issues --- modules/desktop.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/desktop.nix b/modules/desktop.nix index 0457a8e..689d6dc 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -17,10 +17,10 @@ }; # Automatically mount E drive - fileSystems."/mnt/e" = { - device = "/dev/sda2"; - fsType = "ntfs-3g"; - options = [ "rw" "noatime" "uid=1000" ]; - }; + # fileSystems."/mnt/e" = { + # device = "/dev/sda2"; + # fsType = "ntfs-3g"; + # options = [ "rw" "noatime" "uid=1000" ]; + # }; }