From 83eac887cb7c73fb273ad85f491d85e390c9aeb8 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 13 Oct 2025 10:19:18 +0530 Subject: [PATCH] fix(nixos): set /home as neededForBoot in mirai and tsuba modules --- nixos/mirai/mirai.nix | 2 ++ nixos/tsuba/tsuba.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/nixos/mirai/mirai.nix b/nixos/mirai/mirai.nix index 2c4407ac..ec39b35c 100644 --- a/nixos/mirai/mirai.nix +++ b/nixos/mirai/mirai.nix @@ -32,6 +32,8 @@ ]; }; + fileSystems."/home".neededForBoot = true; + # fileSystems."/" = { # device = "/dev/disk/by-uuid/8f805d1b-a469-4db8-9ee1-b98ea220714a"; # fsType = "ext4"; diff --git a/nixos/tsuba/tsuba.nix b/nixos/tsuba/tsuba.nix index 774165a0..0cbcbf2c 100644 --- a/nixos/tsuba/tsuba.nix +++ b/nixos/tsuba/tsuba.nix @@ -10,6 +10,7 @@ networking.useNetworkd = true; systemd.services.NetworkManager-wait-online.enable = false; systemd.network.wait-online.enable = false; + fileSystems."/home".neededForBoot = true; system.nixos.tags = let cfg = config.boot.loader.raspberryPi;