Files
nixos-cluster/hosts/odroid8/default.nix
2023-11-19 21:19:58 +00:00

15 lines
187 B
Nix

{
lib,
pkgs,
config,
inputs,
...
}: {
imports = [
./hardware-configuration.nix
];
nixpkgs.hostPlatform.system = "aarch64-linux";
networking.hostName = "odroid8";
}