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