Files
nix/hosts/common/configs/system/boot/default.nix
Nikolaos Karaolidis 2f47f70d0b Increase boot timeout
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-05-14 10:43:17 +01:00

21 lines
340 B
Nix

{ pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
};
timeout = 1;
efi.canTouchEfiVariables = true;
};
initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = [
"btrfs"
"ntfs"
];
};
}