diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-08-23 12:07:14 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-08-23 12:07:14 +0530 |
commit | 352b28cc0418456a61305fc4ce8c4ac069543d2e (patch) | |
tree | 0c3ec5b068b12bf9a59254215b6f2db281c72022 | |
parent | 88edcc186fad93e20836f937a9d445e3ba7cb533 (diff) |
chore(os): set boot loader timeout to 0
-rw-r--r-- | os/common/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/common/configuration.nix b/os/common/configuration.nix index 0b78187..5c06075 100644 --- a/os/common/configuration.nix +++ b/os/common/configuration.nix @@ -50,7 +50,7 @@ in }; boot = { - loader.timeout = 1; + loader.timeout = 0; initrd.systemd.enable = true; tmp.cleanOnBoot = true; }; |