diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/boot.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/boot.nix b/modules/boot.nix index 8d51b03..2d8f78a 100644 --- a/modules/boot.nix +++ b/modules/boot.nix @@ -1,18 +1,22 @@ { pkgs, ... }: - { boot = { loader = { efi.canTouchEfiVariables = true; systemd-boot = { enable = true; + editor = false; + configurationLimit = 10; }; + timeout = 0; }; supportedFilesystems = [ "ntfs" ]; initrd.kernelModules = [ "amdgpu" "kvm-amd" ]; kernelParams = [ "video=DP-1:2560x1440@240" + "quiet" + "nvme" ]; kernelPackages = pkgs.linuxPackages_cachyos-rc.cachyOverride { mArch = "ZEN4"; }; }; |
