Add initial configuration

This commit is contained in:
2023-03-31 18:27:25 +02:00
commit 52eed708f0
8 changed files with 216 additions and 0 deletions

16
boot.nix Normal file
View File

@@ -0,0 +1,16 @@
{ ... }:
{
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
# Select the this using the ID to avoid mismatches
boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSC2BB240G7_PHDV6462004Y240AGN";
# Enable serial console
boot.kernelParams = [
"console=tty1"
"console=ttyS0,115200"
];
}