From e9ae4f433335ee1940f84a0370f693bbe2dc8b3a Mon Sep 17 00:00:00 2001 From: kiana-S Date: Sat, 7 Jan 2023 22:51:37 -0500 Subject: [PATCH] Fix incorrect system for mobile --- flake.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 6fab11b..aed8940 100644 --- a/flake.nix +++ b/flake.nix @@ -24,15 +24,14 @@ outputs = { self, sxmo, ...}@inputs: let - system = "x86_64-linux"; username = "kiana"; fullname = "Kiana Sheibani"; - moduleArgs = { inherit system username fullname; } // inputs; + moduleArgs = { inherit username fullname; } // inputs; lib = nixpkgs.lib; in { nixosConfigurations = { "${username}-desktop" = lib.makeOverridable lib.nixosSystem { - inherit system; + system = "x86_64-linux"; modules = [ ./config @@ -53,7 +52,7 @@ outputs = { self, }; "${username}-laptop" = lib.makeOverridable lib.nixosSystem { - inherit system; + system = "x86_64-linux"; modules = [ ./config @@ -75,7 +74,7 @@ outputs = { self, }; "${username}-mobile" = lib.makeOverridable lib.nixosSystem { - inherit system; + system = "aarch64-linux"; modules = [ ./config ./mobile/config.nix