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-21 22:57:28 +0100 |
commit | 84253f49ae133d3b8b2b9d23f469f6244bf90000 (patch) | |
tree | d288bb8fe718e12904d4b554672a0352eef9dd4f | |
parent | d04945f18cefae6aefb7aa54dadabdda09a0c3a9 (diff) |
ev: add external HDDs
-rw-r--r-- | nixos/ev-configuration.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nixos/ev-configuration.nix b/nixos/ev-configuration.nix index 91aeab6..9d53a1f 100644 --- a/nixos/ev-configuration.nix +++ b/nixos/ev-configuration.nix @@ -39,6 +39,19 @@ ]; networking.firewall.allowedUDPPorts = []; + 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" ]; + }; + }; + services = { zigbee2mqtt = { enable = true; |