Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
18 lines
350 B
Nix
18 lines
350 B
Nix
# SPDX-FileCopyrightText: 2020-2023 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
boot.loader = {
|
|
grub = {
|
|
enable = lib.mkDefault true;
|
|
gfxmodeBios = "1920x1080,1920x1200,1024x768,auto";
|
|
gfxpayloadBios = "keep";
|
|
#memtest86.enable = true;
|
|
};
|
|
timeout = 2;
|
|
};
|
|
}
|