diff options
| author | Mel <mel@rnrd.eu> | 2025-09-27 01:20:53 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-09-27 01:20:53 +0200 |
| commit | 8d6c56c527c18906597dbcce6df2c96bdf66b702 (patch) | |
| tree | de5da08d7a7d5318354455df80615030932c23c1 /machines/wolfram/devices.nix | |
| parent | ee3341ea9fd1bf5f301dbbeacd52f2cab55b2ca4 (diff) | |
| download | minerals-8d6c56c527c18906597dbcce6df2c96bdf66b702.tar.zst minerals-8d6c56c527c18906597dbcce6df2c96bdf66b702.zip | |
Add temporary 'Kui' drive for Wolfram
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/wolfram/devices.nix')
| -rw-r--r-- | machines/wolfram/devices.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/machines/wolfram/devices.nix b/machines/wolfram/devices.nix index 88a9a2b..14c578e 100644 --- a/machines/wolfram/devices.nix +++ b/machines/wolfram/devices.nix @@ -39,6 +39,21 @@ memoryPercent = 50; }; + # storage + fileSystems = { + "/mnt/Kui" = { + device = "/dev/disk/by-label/Kui"; + fsType = "ext4"; + options = [ + "defaults" + "users" + "nofail" + "exec" + "rw" + ]; + }; + }; + # sound security.rtkit.enable = true; services.pipewire = { |
