Skip to content

Commit

Permalink
chore: work phone setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Swarsel committed Oct 17, 2024
1 parent 4f9380a commit 3337241
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions SwarselSystems.org
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
];
Expand Down
5 changes: 3 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
];
Expand Down

0 comments on commit 3337241

Please sign in to comment.