diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-21 22:55:09 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-29 08:52:26 +0100 |
commit | 0418718b0312832e950933ab7fbdda7e96f3e5f3 (patch) | |
tree | 0c7047d1bcd1cc78301f388dec595d6edba6a289 | |
parent | cb42f5cf152641565916e27173fbe020e0f0eb28 (diff) |
ev: add external HDDs
-rw-r--r-- | nixos/hosts/ev/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
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; |