diff options
-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; |