Commit dc734226f315

Vincent Demeester <vincent@sbr.pm>
2018-12-09 18:05:36
home: add synodine nfs mount point
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 2605ef3
machine/hokkaido.nix
@@ -3,6 +3,11 @@
 with import ../assets/machines.nix; {
   imports = [ ../hardware/thinkpad-x220.nix ];
   time.timeZone = "Europe/Paris";
+  fileSystems."/mnt/synodine" = {
+    device = "192.168.12.19:/";
+    fsType = "nfs";
+    options = ["x-systemd.automount" "noauto"];
+  };
   profiles = {
     avahi.enable = true;
     dev.enable = true;
machine/honshu.nix
@@ -3,6 +3,11 @@
 with import ../assets/machines.nix; {
   imports = [ ../hardware/dell-latitude-e6540.nix ];
   time.timeZone = "Europe/Paris";
+  fileSystems."/mnt/synodine" = {
+    device = "192.168.12.19:/";
+    fsType = "nfs";
+    options = ["x-systemd.automount" "noauto"];
+  };
   profiles = {
     avahi.enable = true;
     dev.enable = true;
machine/massimo.nix
@@ -2,6 +2,11 @@
 
 with import ../assets/machines.nix; {
   time.timeZone = "Europe/Paris";
+  fileSystems."/mnt/synodine" = {
+    device = "192.168.12.19:/";
+    fsType = "nfs";
+    options = ["x-systemd.automount" "noauto"];
+  };
   boot = {
     cleanTmpDir = true;
   };
machine/shikoku.nix
@@ -2,6 +2,11 @@
 
 with import ../assets/machines.nix; {
   time.timeZone = "Europe/Paris";
+  fileSystems."/mnt/synodine" = {
+    device = "192.168.12.19:/";
+    fsType = "nfs";
+    options = ["x-systemd.automount" "noauto"];
+  };
   profiles = {
     buildkit.enable = true;
     containerd.enable = true;