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" ]; };