diff options
Diffstat (limited to 'machines')
| -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 = { |
