1
0

hosts/beryllium: add host

This commit is contained in:
2022-12-29 16:46:51 +01:00
parent 6d89551808
commit 8e96523837
3 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
../../configuration/common
];
boot.kernelParams = [ "console=ttyS0,115200n8" ];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.extraConfig = "
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
terminal_input serial
terminal_output serial
";
networking.hostName = "beryllium";
clerie.monitoring = {
enable = true;
id = "213";
pubkey = "hMIr7fgfZwSjNufRaMtq+7MDxfwN3XLJ4ZlmSOoFrz4=";
};
system.stateVersion = "22.11";
}