diff options
author | Leonardo Santiago <[email protected]> | 2024-06-25 10:24:46 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-06-25 10:24:59 -0300 |
commit | 94e28dca93f8481715728b006943a791fdafda9e (patch) | |
tree | 885ce13346799f737b17d34b453b344ebc852e85 /flake.nix | |
parent | 5b7c730721098a82546b8538e96d415ba5e8d914 (diff) |
initial commit for rpi4
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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 + ]; + }; + }; }; } |