fix(nixos): set /home as neededForBoot in mirai and tsuba modules
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s

This commit is contained in:
uttarayan21
2025-10-13 10:19:18 +05:30
parent fd5166d82b
commit 83eac887cb
2 changed files with 3 additions and 0 deletions

View File

@@ -32,6 +32,8 @@
]; ];
}; };
fileSystems."/home".neededForBoot = true;
# fileSystems."/" = { # fileSystems."/" = {
# device = "/dev/disk/by-uuid/8f805d1b-a469-4db8-9ee1-b98ea220714a"; # device = "/dev/disk/by-uuid/8f805d1b-a469-4db8-9ee1-b98ea220714a";
# fsType = "ext4"; # fsType = "ext4";

View File

@@ -10,6 +10,7 @@
networking.useNetworkd = true; networking.useNetworkd = true;
systemd.services.NetworkManager-wait-online.enable = false; systemd.services.NetworkManager-wait-online.enable = false;
systemd.network.wait-online.enable = false; systemd.network.wait-online.enable = false;
fileSystems."/home".neededForBoot = true;
system.nixos.tags = let system.nixos.tags = let
cfg = config.boot.loader.raspberryPi; cfg = config.boot.loader.raspberryPi;