mirror of
https://github.com/lxstinthesky/matrix.git
synced 2025-11-02 17:02:47 +00:00
11 lines
351 B
Nix
11 lines
351 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
# Specific settings for Hetzner Cloud AArch64 instances
|
|
# https://wiki.nixos.org/wiki/Install_NixOS_on_Hetzner_Cloud#AArch64_(CAX_instance_type)_specifics
|
|
boot.initrd.kernelModules = [ "virtio_gpu" ];
|
|
boot.kernelParams = [ "console=tty" ];
|
|
|
|
# aarch64-linux
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
} |