From b70c0bb56be3157dd19bbccbb7f1d36f2a58ff4b Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Wed, 5 Feb 2025 17:41:09 -0800 Subject: [PATCH] Fix: Disable systemd's emergency mode, which caused a failure to boot when our iscsi disk was not mounted during boot. --- dotfiles/systems/desktop/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/systems/desktop/configuration.nix b/dotfiles/systems/desktop/configuration.nix index 1c58b06e..1c86d980 100644 --- a/dotfiles/systems/desktop/configuration.nix +++ b/dotfiles/systems/desktop/configuration.nix @@ -70,6 +70,8 @@ group = "wheel"; }; + systemd.enableEmergencyMode = false; + nixpkgs.config.allowUnfree = true; programs.nix-ld.enable = true; nix.settings.experimental-features = [ "nix-command" "flakes" ];