prefect: set more filesystem options
Alan Pearce alan@alanpearce.eu
Mon, 13 Jun 2022 23:39:48 +0200
1 files changed, 20 insertions(+), 9 deletions(-)
jump to
M system/prefect.nix → system/prefect.nix
@@ -50,15 +50,26 @@ boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ]; - fileSystems."/data" = { - label = "Data"; - fsType = "ntfs"; - options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; - }; - fileSystems."/windows" = { - label = "Windows"; - fsType = "ntfs"; - options = ["rw" "uid=1000" "noauto" "x-systemd.automount"]; + fileSystems = { + "/".options = [ "atgc" "gc_merge" "lazytime" ]; + "/home" = "/dev/disk/by-partlabel/home"; + "/mnt/data" = { + device = "/dev/disk/by-uuid/52E422C5E422AAE5"; + fsType = "ntfs3"; + options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ]; + }; + + "/mnt/games" = { + device = "/dev/disk/by-partlabel/games"; + fsType = "ntfs3"; + options = [ "uid=1000" "gid=100" "noauto" "x-systemd-automount" ]; + }; + + "/mnt/windows" = { + device = "/dev/disk/by-partlabel/windows"; + fsType = "ntfs3"; + options = [ "nofail" ]; + }; }; services.xserver = {