From 0418718b0312832e950933ab7fbdda7e96f3e5f3 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 21 Dec 2024 22:55:09 +0100 Subject: ev: add external HDDs --- nixos/hosts/ev/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nixos/hosts/ev/default.nix b/nixos/hosts/ev/default.nix index 3bdde6d..6ea2f19 100644 --- a/nixos/hosts/ev/default.nix +++ b/nixos/hosts/ev/default.nix @@ -18,6 +18,19 @@ home-automation.zigbeeSerialPort = "/dev/serial/by-id/usb-ITead_Sonoff_Zigbee_3.0_USB_Dongle_Plus_e2fed465c59ded11962fd7a5a7669f5d-if00-port0"; + fileSystems = { + "/mnt/personal" = { + device = "UUID=5587670d-9a50-4068-baca-17f5360f9ff9"; + fsType = "ext4"; + options = [ "nofail" "noatime" "rw" ]; + }; + "/mnt/lib" = { + device = "UUID=a5f90083-d604-4218-b4d4-aac421b9d732"; + fsType = "ext4"; + options = [ "nofail" "noatime" "rw" ]; + }; + }; + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; -- cgit v1.2.3