nixos/machines/newton/boot.nix
2022-12-05 20:32:39 +01:00

10 lines
129 B
Nix

{ config, ... }:
{
boot.loader = {
timeout = 1;
grub = {
enable = true;
device = "/dev/sda";
};
};
}