diff options
Diffstat (limited to 'machines/bismuth/devices.nix')
| -rw-r--r-- | machines/bismuth/devices.nix | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/machines/bismuth/devices.nix b/machines/bismuth/devices.nix index cf17a89..b5a6e16 100644 --- a/machines/bismuth/devices.nix +++ b/machines/bismuth/devices.nix @@ -42,19 +42,21 @@ jack.enable = true; }; - # extra filesystems + # disks boot.supportedFilesystems = [ "ntfs" ]; fileSystems = { - "/run/media/mel/Half" = { - device = "/dev/disk/by-label/Half"; - fsType = "ntfs-3g"; - options = [ "rw" "uid=1000" ]; - }; "/run/media/mel/Main" = { device = "/dev/disk/by-label/Main"; fsType = "ntfs-3g"; - options = [ "rw" "uid=1000" ]; + options = [ + "defaults" + "users" + "nofail" + "exec" + "rw" + "uid=1000" + ]; }; }; |
