Files
develnix/boot.nix
stubbfel e20fd36a84 init
2018-02-15 20:33:05 +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";
};
}