diff options
Diffstat (limited to 'machines/bismuth')
| -rw-r--r-- | machines/bismuth/devices.nix | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/machines/bismuth/devices.nix b/machines/bismuth/devices.nix index 64a5809..2426a11 100644 --- a/machines/bismuth/devices.nix +++ b/machines/bismuth/devices.nix @@ -47,7 +47,9 @@ # disks boot.supportedFilesystems = [ "ntfs" ]; + # see: man mount(8) for options fileSystems = { + # primary windows system disk "/run/media/mel/Main" = { device = "/dev/disk/by-label/Main"; fsType = "ntfs-3g"; @@ -61,8 +63,9 @@ ]; }; - "/run/media/mel/Two" = { - device = "/dev/disk/by-label/Two"; + # large storage disk, windows-side partition + "/run/media/mel/Wo" = { + device = "/dev/disk/by-label/Wo"; fsType = "ntfs-3g"; options = [ "defaults" @@ -73,6 +76,17 @@ "uid=1000" ]; }; + + # large storage disk, linux-side partition + "/run/media/mel/To" = { + device = "/dev/disk/by-label/To"; + fsType = "ext4"; + options = [ + "defaults" + "nodiscard" # continuous trim not recommended + "nofail" + ]; + }; }; # printing |
