From ad8da9dfa669711f5978c6c6dec81da8d5eeadfd Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 27 Sep 2022 04:32:17 -0700 Subject: [PATCH] sane ssh mounts: enable `noCheck` to silence syslog warnings --- modules/universal/fs.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/universal/fs.nix b/modules/universal/fs.nix index d055ce44e..6980e52ef 100644 --- a/modules/universal/fs.nix +++ b/modules/universal/fs.nix @@ -28,31 +28,37 @@ in device = "colin@uninsane.org:/var/lib/uninsane/media"; inherit (sshOpts) fsType; options = sshOpts.optionsColin; + noCheck = true; }; fileSystems."/mnt/servo-media-lan" = { device = "colin@servo:/var/lib/uninsane/media"; inherit (sshOpts) fsType; options = sshOpts.optionsColin; + noCheck = true; }; fileSystems."/mnt/servo-root-wan" = { device = "colin@uninsane.org:/"; inherit (sshOpts) fsType; options = sshOpts.optionsRoot; + noCheck = true; }; fileSystems."/mnt/servo-root-lan" = { device = "colin@servo:/"; inherit (sshOpts) fsType; options = sshOpts.optionsRoot; + noCheck = true; }; fileSystems."/mnt/desko-home" = { device = "colin@desko:/home/colin"; inherit (sshOpts) fsType; options = sshOpts.optionsColin; + noCheck = true; }; fileSystems."/mnt/desko-root" = { device = "colin@desko:/"; inherit (sshOpts) fsType; options = sshOpts.optionsRoot; + noCheck = true; }; environment.systemPackages = [