nixos/machines/newton/boot.nix

11 lines
129 B
Nix
Raw Normal View History

2022-07-30 15:40:56 +02:00
{ config, ... }:
{
boot.loader = {
timeout = 1;
grub = {
enable = true;
device = "/dev/sda";
};
};
}