summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kuro/hardware-configuration.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/kuro/hardware-configuration.nix b/kuro/hardware-configuration.nix
index 861b7cb..536ea65 100644
--- a/kuro/hardware-configuration.nix
+++ b/kuro/hardware-configuration.nix
@@ -40,19 +40,25 @@
fileSystems."/home" =
{ device = "/data/home";
fsType = "none";
+ neededForBoot = true;
options = [ "bind" ];
+ depends = [ "/data" ];
};
fileSystems."/root" =
{ device = "/data/root";
fsType = "none";
+ neededForBoot = true;
options = [ "bind" ];
+ depends = [ "/data" ];
};
fileSystems."/etc/nixos" =
{ device = "/data/nixos/kuro";
fsType = "none";
+ neededForBoot = true;
options = [ "bind" ];
+ depends = [ "/data" ];
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";