1
0

hosts/astatine: add host

This commit is contained in:
2023-04-04 21:01:44 +02:00
parent 41cd4792a6
commit 5206cbac8d
3 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.kernelParams = [ "console=ttyS0,115200n8" ];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
# boot.loader.grub.efiSupport = true;
# boot.loader.grub.efiInstallAsRemovable = true;
# boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Define on which hard drive you want to install Grub.
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
boot.loader.grub.extraConfig = "
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
terminal_input serial
terminal_output serial
";
networking.hostName = "astatine";
clerie.monitoring = {
# enable = true;
id = "%MONITORING_ID%";
pubkey = "%MONITORING_PUBKEY%";
};
system.stateVersion = "23.05";
}