From 092a705c6d7c102da889a05890a74507bfc21eae Mon Sep 17 00:00:00 2001 From: sstent Date: Mon, 20 Nov 2023 18:07:03 +0000 Subject: [PATCH] add odroid5 --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 28fcb1b..c0dbbfc 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,13 @@ formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra; nixosConfigurations = { + odroid5 = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + specialArgs = {inherit inputs;}; + modules = + globalModules + ++ [./hosts/odroid5]; + }; odroid8 = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; specialArgs = {inherit inputs;};