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;};