From 4f820729c3597d685fcd14da2e096e87529640e8 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Wed, 21 Aug 2024 14:28:23 -0700 Subject: [PATCH] fix: correctly pass system to callisto --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index b782c86..d2ed006 100755 --- a/flake.nix +++ b/flake.nix @@ -88,8 +88,10 @@ }; callisto = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; - system = "aarch64-linux"; + specialArgs = { + inherit inputs; + system = "aarch64-linux"; + }; modules = [ ./hosts/callisto ];