From 5d750edc8f2e4e820234ad52a038c97ecfd9ecc4 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sun, 31 Aug 2025 12:26:40 +0300 Subject: [PATCH] Removed auto mounting for C drive so boot is more consistent --- modules/desktop.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/desktop.nix b/modules/desktop.nix index 689d6dc..cd41be0 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -10,11 +10,11 @@ ]; # Automaticaly mount C drive - fileSystems."/mnt/c" = { - device = "/dev/nvme1n1p4"; - fsType = "ntfs-3g"; - options = [ "rw" "noatime" "uid=1000" ]; - }; + # fileSystems."/mnt/c" = { + # device = "/dev/nvme1n1p4"; + # fsType = "ntfs-3g"; + # options = [ "rw" "noatime" "uid=1000" ]; + # }; # Automatically mount E drive # fileSystems."/mnt/e" = {