25 lines
520 B
Nix
25 lines
520 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
boot.kernelParams = [ "console=ttyS0,115200n8" ];
|
||
|
|
||
|
boot.loader.grub.enable = true;
|
||
|
boot.loader.grub.device = "/dev/disk/by-id/ata-InnoDisk_Corp._DRPS-08GJ30AC1QS-A88_20120705AAB200000505";
|
||
|
boot.loader.grub.extraConfig = "
|
||
|
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
|
||
|
terminal_input serial
|
||
|
terminal_output serial
|
||
|
";
|
||
|
|
||
|
|
||
|
networking.hostName = "tungsten";
|
||
|
|
||
|
system.stateVersion = "25.05";
|
||
|
}
|
||
|
|