diff --git a/SwarselSystems.org b/SwarselSystems.org index 4ae9c36d..214d8678 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -632,7 +632,7 @@ In contrast, this defines home-manager systems, which I only have one of, that s #+begin_src nix :tangle no :noweb-ref flakehomeconf "swarsel@home-manager" = inputs.home-manager.lib.homeManagerConfiguration { - pkgs = pkgsFor.aarch64-linux; + pkgs = pkgsFor.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; }; modules = homeModules ++ mixedModules ++ [ ./profiles/home-manager @@ -650,7 +650,8 @@ Nix on Android also demands an own flake output, which is provided here. #+begin_src nix :tangle no :noweb-ref flakedroidconf - default = inputs.nix-on-droid.lib.nixOnDroidConfiguration { + mysticant = inputs.nix-on-droid.lib.nixOnDroidConfiguration { + pkgs = pkgsFor.aarch64-linux; modules = [ ./profiles/mysticant ]; diff --git a/flake.nix b/flake.nix index f573872e..221a6f1b 100644 --- a/flake.nix +++ b/flake.nix @@ -252,7 +252,7 @@ homeConfigurations = { "swarsel@home-manager" = inputs.home-manager.lib.homeManagerConfiguration { - pkgs = pkgsFor.aarch64-linux; + pkgs = pkgsFor.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; }; modules = homeModules ++ mixedModules ++ [ ./profiles/home-manager @@ -263,7 +263,8 @@ nixOnDroidConfigurations = { - default = inputs.nix-on-droid.lib.nixOnDroidConfiguration { + mysticant = inputs.nix-on-droid.lib.nixOnDroidConfiguration { + pkgs = pkgsFor.aarch64-linux; modules = [ ./profiles/mysticant ];