fix: correctly pass system to callisto

This commit is contained in:
Youwen Wu 2024-08-21 14:28:23 -07:00
parent 577753d3cb
commit 4f820729c3

View file

@ -88,8 +88,10 @@
}; };
callisto = nixpkgs.lib.nixosSystem { callisto = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;}; specialArgs = {
inherit inputs;
system = "aarch64-linux"; system = "aarch64-linux";
};
modules = [ modules = [
./hosts/callisto ./hosts/callisto
]; ];