From 8c8cd2ee042871615f72f5b9a59e6ffabe4edfb9 Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Thu, 11 Jan 2024 07:37:51 +0100 Subject: sync configs --- kuro/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) 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"; -- cgit v1.2.3