Files
stubbfelnix/boot.nix
2017-11-17 02:11:40 +01:00

11 lines
167 B
Nix

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