nix-configs/hosts/aarch64/drack/configuration.nix

13 lines
173 B
Nix

{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.kernelParams = [ "console=tty0" ];
networking.hostName = "drack";
}