aboutsummaryrefslogtreecommitdiff
path: root/modules/common/default.nix
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-10-05 20:06:08 +0200
committerMax Audron <audron@cocaine.farm>2023-10-05 20:06:08 +0200
commit3b78c6d51012c736868088cc1d4c0a3a505e8ccc (patch)
tree4f8ea84486f9ea4ad93b09e5f447745a27ebda9a /modules/common/default.nix
parentdeploy powerdns and bgp config (diff)
disable systemd emergency mode
Diffstat (limited to 'modules/common/default.nix')
-rw-r--r--modules/common/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix
index bf61be0..05c395f 100644
--- a/modules/common/default.nix
+++ b/modules/common/default.nix
@@ -11,6 +11,9 @@
keyMap = "us";
};
+ # Disable emergency mode so boot continues
+ systemd.enableEmergencyMode = false;
+
# Default Packages Set
environment.systemPackages = with pkgs; [ git vim htop wget nftables wireguard-tools tmux ];