From 0e920a568f3ecfa9c8a9af01de65355af07a626d Mon Sep 17 00:00:00 2001 From: notohh Date: Thu, 16 Feb 2023 23:23:43 -0500 Subject: [PATCH] feat: enable nas through nfs --- hosts/hime/hardware-configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/hime/hardware-configuration.nix b/hosts/hime/hardware-configuration.nix index 89f9a1c..7f2b306 100644 --- a/hosts/hime/hardware-configuration.nix +++ b/hosts/hime/hardware-configuration.nix @@ -14,6 +14,10 @@ { device = "/dev/disk/by-uuid/154e6059-35f9-49bb-b049-085b325ac997"; fsType = "ext4"; }; + fileSystems."/home/oh/nas" = + { device = "192.168.1.71:/volume1/hime"; + fsType = "nfs"; + }; swapDevices = [ { device = "/dev/disk/by-uuid/15978bb3-da9b-4ec2-bd35-1716dd97812b"; }