Commit 52a50abf0b00

Vincent Demeester <vincent@sbr.pm>
2021-01-13 08:41:54
Temporary fix tmpOnTmpfs failure on boot
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent dc22df9
Changed files (3)
systems
systems/hosts/hokkaido.nix
@@ -50,6 +50,9 @@ in
     plymouth.enable = true;
   };
 
+  # FIXME Fix tmpOnTmpfs
+  systemd.additionalUpstreamSystemUnits = [ "tmp.mount" ];
+
   boot.binfmt.registrations = {
     s390x-linux = {
       # interpreter = getEmulator "s390x-linux";
systems/hosts/naruhodo.nix
@@ -78,6 +78,9 @@ in
     ];
   };
 
+  # FIXME Fix tmpOnTmpfs
+  systemd.additionalUpstreamSystemUnits = [ "tmp.mount" ];
+
   nix.distributedBuilds = true;
   nix.buildMachines = [
     {
systems/modules/desktop/base.nix
@@ -17,6 +17,9 @@ in
       plymouth.enable = true;
     };
 
+    # FIXME Fix tmpOnTmpfs
+    systemd.additionalUpstreamSystemUnits = [ "tmp.mount" ];
+
     # Extra packages to add to the system
     environment.systemPackages = with pkgs; [
       xorg.xmessage