25 lines
1.1 KiB
Nix
25 lines
1.1 KiB
Nix
{ ... }:
|
|
{
|
|
fileSystems."/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 = "/home/server/Workspace";
|
|
options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" "x-gvfs-hide"];
|
|
};
|
|
fileSystems."/home/user/Documents" = {
|
|
device = "/home/server/Storage/Thomas/Documents";
|
|
options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" "x-gvfs-hide"];
|
|
};
|
|
fileSystems."/home/user/Pictures" = {
|
|
device = "/home/server/Storage/Thomas/Pictures";
|
|
options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" "x-gvfs-hide"];
|
|
};
|
|
fileSystems."/home/user/Videos" = {
|
|
device = "/home/server/Storage/Thomas/Videos";
|
|
options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" "x-gvfs-hide"];
|
|
};
|
|
}
|