From cce94888f45875930f7fb0bee6f806cb5dacea32 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sat, 1 Apr 2023 10:16:17 +0200 Subject: [PATCH] hosts: reenable nas mounts on laptop --- hosts/laptop/hardware-configuration.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index 7534dcd..94d6f36 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -110,17 +110,17 @@ fsType = "vfat"; }; - # fileSystems."/mnt/Pluto" = - # { device = "nas:/Pluto"; - # fsType = "nfs"; - # options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ]; - # }; + fileSystems."/mnt/Pluto" = + { device = "nas:/Pluto"; + fsType = "nfs"; + options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ]; + }; - # fileSystems."/mnt/Mars" = - # { device = "nas:/Mars"; - # fsType = "nfs"; - # options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ]; - # }; + fileSystems."/mnt/Mars" = + { device = "nas:/Mars"; + fsType = "nfs"; + options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ]; + }; swapDevices = [ ];