From 6fe528e5095bcc535ed97477e320172f5edb2358 Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Thu, 7 May 2026 00:33:42 +0200 Subject: [PATCH] switch /var/games to ntfs3 driver --- hosts/gaming-pc.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/gaming-pc.nix b/hosts/gaming-pc.nix index 4808728..630a24a 100644 --- a/hosts/gaming-pc.nix +++ b/hosts/gaming-pc.nix @@ -94,9 +94,12 @@ "/var/games" = { device = "/dev/disk/by-uuid/8A3094A230949733"; # "Shared" NTFS partition - fsType = "ntfs-3g"; + fsType = "ntfs3"; options = [ "uid=1000" "gid=100" # My user account + "force" # Mount even if dirty + "windows_names" # Prevent creation of fiiles with name not allowed by Windows + "sys_immutable" "nofail" # Don't fail boot if failed to mount because windows left it dirty ]; };