1
0

hosts/tungsten: Init host

This commit is contained in:
2025-02-21 20:26:02 +01:00
parent 822763abe4
commit 427820aa37
3 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ 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";
}