From 9c18261ef41a7fcf39e811c0efbc0753c1994ef6 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 11 Nov 2024 15:25:39 +0100 Subject: [PATCH] adds TODO for mounting 8TB mass storage disk in mennos-server configuration --- config/nixos/hardware/mennos-server.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/nixos/hardware/mennos-server.nix b/config/nixos/hardware/mennos-server.nix index 350972d..84a15b1 100644 --- a/config/nixos/hardware/mennos-server.nix +++ b/config/nixos/hardware/mennos-server.nix @@ -13,6 +13,13 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # TODO: Enable this when I switch from test VM to actual hardware + # Mount 8TB mass storage disk to /mnt/8tb + # fileSystems."/mnt/8tb" = { + # device = "/dev/disk/by-uuid/1fb739d5-a9dc-490c-a182-f624127a307f"; + # fsType = "ext4"; + # }; + # Enable OpenGL # hardware.opengl.enable = true;