From 3198e5f1072578b5a4b0139ecedff633caa9f1b6 Mon Sep 17 00:00:00 2001 From: sstent Date: Tue, 21 Nov 2023 18:56:55 +0000 Subject: [PATCH] fix odroid7 and 6 --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/flake.nix b/flake.nix index c0dbbfc..dbb2d91 100644 --- a/flake.nix +++ b/flake.nix @@ -28,6 +28,20 @@ globalModules ++ [./hosts/odroid5]; }; + odroid6 = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + specialArgs = {inherit inputs;}; + modules = + globalModules + ++ [./hosts/odroid6]; + }; + odroid7 = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + specialArgs = {inherit inputs;}; + modules = + globalModules + ++ [./hosts/odroid7]; + }; odroid8 = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; specialArgs = {inherit inputs;};