Files
stubbfelnix/boot.nix
stubbfel 0a98eb2a98 update
2023-06-03 17:51:40 +02:00

11 lines
168 B
Nix

{ config, pkgs, ... }:
{
# Use the GRUB 2 boot loader.
boot.loader.grub = {
enable = true;
# version = 2;
device = "/dev/sda";
};
}