Initial commit

This commit is contained in:
stubbfel
2017-11-17 02:11:40 +01:00
commit 7c7689ef25
13 changed files with 229 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";
};
}