From 3bc77e4703a10463dacbf59296c1f87e29cfc1e8 Mon Sep 17 00:00:00 2001 From: tx0 Date: Sat, 8 Mar 2025 13:19:34 +0500 Subject: [PATCH] some changes --- hosts/earth/system/hardware.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/earth/system/hardware.nix b/hosts/earth/system/hardware.nix index 37301e8..e949c45 100644 --- a/hosts/earth/system/hardware.nix +++ b/hosts/earth/system/hardware.nix @@ -41,6 +41,12 @@ options = ["compress=zstd" "subvol=@Home"]; }; + fileSystems."/mnt/nfs_share" = { + device = "192.168.48.41:/data/nfs_share"; + fsType = "nfs"; + options = ["noauto" "x.systemd.automount" "x-systemd.idle-timeout=600"]; + }; + swapDevices = []; networking.useDHCP = lib.mkDefault true;