From bc3f98abb0070132795bfd6abf53d986d5682e8b Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Tue, 3 Jun 2025 19:35:24 +0200 Subject: [PATCH] System: Mount games partition --- system/nixinator/hardware-configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/system/nixinator/hardware-configuration.nix b/system/nixinator/hardware-configuration.nix index 2bbb4ff6..c707778b 100644 --- a/system/nixinator/hardware-configuration.nix +++ b/system/nixinator/hardware-configuration.nix @@ -35,7 +35,7 @@ "/" = { device = "/dev/disk/by-uuid/68bd46a0-e95c-4764-a006-44bd9975a6c2"; fsType = "ext4"; - options = ["noatime" "nodiratime" "discard"]; + options = ["defaults" "rw" "relatime"]; }; "/boot/efi" = { @@ -43,6 +43,12 @@ fsType = "vfat"; }; + "/home/christoph/Games" = { + device = "/dev/disk/by-uuid/e57c1831-09d7-4046-9c62-086d3596f825"; + fsType = "ext4"; + options = ["defaults" "rw" "relatime"]; + }; + "/home/christoph/Movies" = { device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie"; fsType = "nfs";