diff options
author | sefidel <contact@sefidel.net> | 2024-08-17 00:30:47 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-08-17 00:30:47 +0900 |
commit | 442c74f343b041667a2e8155854132efb883d5e1 (patch) | |
tree | 631ca4b573a06eb46c07d31b845f0a3babd00f9d /nixos/alpha/configuration.nix | |
parent | 21e51a498c4fe580aa4db94689dc1cbf7f87409b (diff) | |
download | nixrc-442c74f343b041667a2e8155854132efb883d5e1.tar.gz nixrc-442c74f343b041667a2e8155854132efb883d5e1.zip |
fix(nixos): disable bootCounting
* Change was temporarily reverted upstream: https://github.com/NixOS/nixpkgs/pull/334526
Diffstat (limited to 'nixos/alpha/configuration.nix')
-rw-r--r-- | nixos/alpha/configuration.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index b759f45..69358c8 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -38,8 +38,11 @@ enable = false; editor = false; configurationLimit = 16; - bootCounting.enable = true; - bootCounting.tries = 3; + # TODO: https://github.com/NixOS/nixpkgs/pull/334526 + # bootCounting.enable = true; + # bootCounting.tries = 3; + # bootCounting.enable = true; + # bootCounting.tries = 3; }; boot.initrd.postDeviceCommands = lib.mkAfter '' |