CrOS/hosts/remote/default.nix
2024-09-13 15:37:26 +00:00

24 lines
580 B
Nix

{ pkgs,
...
}:{
imports = [
./hardware-configuration.nix
../../modules
];
networking.hostName = "nixos-remote";
environment.systemPackages = [
pkgs.git
pkgs.vim
pkgs.wget
];
boot.loader.grub.device = "/dev/xvda";
boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = true;
boot.loader.timeout = 1;
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_output console serial
terminal_input console serial
'';
}