sane ssh mounts: enable noCheck to silence syslog warnings

This commit is contained in:
2022-09-27 04:32:17 -07:00
parent 32036ec45e
commit ad8da9dfa6

View File

@@ -28,31 +28,37 @@ in
device = "colin@uninsane.org:/var/lib/uninsane/media"; device = "colin@uninsane.org:/var/lib/uninsane/media";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsColin; options = sshOpts.optionsColin;
noCheck = true;
}; };
fileSystems."/mnt/servo-media-lan" = { fileSystems."/mnt/servo-media-lan" = {
device = "colin@servo:/var/lib/uninsane/media"; device = "colin@servo:/var/lib/uninsane/media";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsColin; options = sshOpts.optionsColin;
noCheck = true;
}; };
fileSystems."/mnt/servo-root-wan" = { fileSystems."/mnt/servo-root-wan" = {
device = "colin@uninsane.org:/"; device = "colin@uninsane.org:/";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsRoot; options = sshOpts.optionsRoot;
noCheck = true;
}; };
fileSystems."/mnt/servo-root-lan" = { fileSystems."/mnt/servo-root-lan" = {
device = "colin@servo:/"; device = "colin@servo:/";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsRoot; options = sshOpts.optionsRoot;
noCheck = true;
}; };
fileSystems."/mnt/desko-home" = { fileSystems."/mnt/desko-home" = {
device = "colin@desko:/home/colin"; device = "colin@desko:/home/colin";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsColin; options = sshOpts.optionsColin;
noCheck = true;
}; };
fileSystems."/mnt/desko-root" = { fileSystems."/mnt/desko-root" = {
device = "colin@desko:/"; device = "colin@desko:/";
inherit (sshOpts) fsType; inherit (sshOpts) fsType;
options = sshOpts.optionsRoot; options = sshOpts.optionsRoot;
noCheck = true;
}; };
environment.systemPackages = [ environment.systemPackages = [