clients: fs: mount servo over nfs

This commit is contained in:
Colin 2023-06-15 02:14:42 +00:00
parent b81642ccc9
commit 7a57cf5327

View File

@ -30,6 +30,25 @@ in
"/libexec"
];
fileSystems."/mnt/servo-nfs" = {
device = "servo-hn:/";
noCheck = true;
fsType = "nfs";
options = [ "x-systemd.automount" ];
};
# fileSystems."/mnt/servo-nfs-lan" = {
# device = "servo:/";
# noCheck = true;
# fsType = "nfs";
# options = [ "x-systemd.automount" ];
# };
# fileSystems."/mnt/servo-media-nfs" = {
# device = "10.0.10.5:/media";
# noCheck = true;
# fsType = "nfs";
# options = [ "x-systemd.automount" ];
# };
fileSystems."/mnt/servo-media-wan" = {
device = "colin@uninsane.org:/var/lib/uninsane/media";
inherit (sshOpts) fsType;