From b8d914355d6e3cb99ee6c04cb2ad07283cb2d02a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Fri, 21 Jun 2024 13:53:47 +0200 Subject: [PATCH] Fri Jun 21 01:53:47 PM CEST 2024 --- hosts/Common/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/Common/default.nix b/hosts/Common/default.nix index 51a3281..3055bc9 100644 --- a/hosts/Common/default.nix +++ b/hosts/Common/default.nix @@ -51,27 +51,27 @@ }; fileSystems."/home/server" = { - device = "10.1:/home/server"; + device = "192.168.1.2:/home/server"; fsType = "nfs"; options = [ "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Workspace" = { - device = "10.1:/home/server/Workspace"; + device = "192.168.1.2:/home/server/Workspace"; fsType = "nfs"; options = [ "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Documents" = { - device = "10.1:/home/server/Storage/Thomas/Documents"; + device = "192.168.1.2:/home/server/Storage/Thomas/Documents"; fsType = "nfs"; options = [ "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Pictures" = { - device = "10.1:/home/server/Storage/Thomas/Pictures"; + device = "192.168.1.2:/home/server/Storage/Thomas/Pictures"; fsType = "nfs"; options = [ "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Videos" = { - device = "10.1:/home/server/Storage/Thomas/Videos"; + device = "192.168.1.2:/home/server/Storage/Thomas/Videos"; fsType = "nfs"; options = [ "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; };