From 94e28dca93f8481715728b006943a791fdafda9e Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Tue, 25 Jun 2024 10:24:46 -0300 Subject: initial commit for rpi4 --- flake.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 59fe2ba..c35fc49 100644 --- a/flake.nix +++ b/flake.nix @@ -53,7 +53,15 @@ ]; }; in { - nixosConfigurations = listToAttrs - (map (host: {name = host; value = defaultNixosSystem host; }) hosts); + nixosConfigurations = + (listToAttrs (map (host: {name = host; value = defaultNixosSystem host; }) hosts)) + // { iori = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + ./hosts/iori/configuration.nix + ]; + }; + }; }; } -- cgit v1.2.3