Add nix-on-droid target

This commit is contained in:
Nathan McCarty 2022-05-16 20:14:28 -04:00
parent 0e3427418f
commit 6e6563755b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 20 additions and 0 deletions

View File

@ -267,5 +267,25 @@
homeDirectory = "/home/nathan"; homeDirectory = "/home/nathan";
stateVersion = "21.11"; stateVersion = "21.11";
}; };
nixOnDroidConfigurations = {
# Galaxy Tab S7+
tablet = nix-on-droid.lib.nixOnDroidConfiguration {
system = "aarch64-linux";
extraModules = [
./applications/devel-core.nix
./applications/utils-core.nix
];
extraSpecialArgs = {
unstable = import nixpkgs-unstable {
config = { allowUnfree = true; };
overlays = [ emacs.overlay ];
system = "aarch64-linux";
};
fenix = fenix.packages.x86_64-darwin;
doomEmacs = nix-doom-emacs.hmModule;
};
};
};
}; };
} }