diff options
| author | Mel <mel@rnrd.eu> | 2025-02-27 22:23:23 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-02-27 22:23:23 +0100 |
| commit | 05bca0df994c7b681200e16e138c7fa82d64e072 (patch) | |
| tree | c49450e7b10ecd750cc75fb9c53053c197b9dd9c /machines/bismuth/devices.nix | |
| parent | 877be9fad115869138b4490dbb56123031e54899 (diff) | |
| download | minerals-05bca0df994c7b681200e16e138c7fa82d64e072.tar.zst minerals-05bca0df994c7b681200e16e138c7fa82d64e072.zip | |
Remove `Half` disk filesystem entry from bismuth
Signed-off-by: Mel <mel@rnrd.eu>
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" + ]; }; }; |
