diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-21 12:57:28 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-21 12:57:28 +0530 |
| commit | 674974ab5b9413832cb019062717b910953a8b59 (patch) | |
| tree | 6c8a75a7b65687e2ae648cf5b5ae9310a5f693cd /hardware-configuration.nix | |
| parent | f723472dbea0343646ec436cb07b2377425f06f8 (diff) | |
| download | nixos-config-674974ab5b9413832cb019062717b910953a8b59.tar.gz nixos-config-674974ab5b9413832cb019062717b910953a8b59.zip | |
Minor boot params change
Diffstat (limited to 'hardware-configuration.nix')
| -rw-r--r-- | hardware-configuration.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 4f35056..9890cc0 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -13,7 +13,7 @@ kernelModules = [ "wl" ]; }; boot.kernelModules = ["kvm-intel" "wl"]; - boot.kernelParams = [ "i8042.nopnp=1" "pci=nocrs" "quiet" "splash" ]; + boot.kernelParams = [ "i8042.nopnp=1" "pci=nocrs" ]; boot.extraModulePackages = []; boot.extraModprobeConfig = '' options snd slots=snd-hda-intel @@ -27,7 +27,11 @@ # Bootloader boot.loader = { - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 30; + }; + timeout = 1; efi.canTouchEfiVariables = true; }; |
