mirror of
https://github.com/sstent/nixos-cluster.git
synced 2026-01-25 14:42:55 +00:00
15 lines
187 B
Nix
15 lines
187 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
nixpkgs.hostPlatform.system = "aarch64-linux";
|
|
networking.hostName = "odroid8";
|
|
}
|