This commit is contained in:
stubbfel
2018-02-15 20:33:05 +01:00
commit e20fd36a84
13 changed files with 147 additions and 0 deletions

10
boot.nix Normal file
View File

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