Nix-on-Droid manualPreface
Some basic documentation of Nix-on-Droid.
If you encounter problems or bugs then please report them on the
issue tracker.
nix-on-droid configuration optionsUsage
To use these options, edit the config file in
~/.config/nixpkgs/nix-on-droid.nix or in case of a flake setup,
set the modules value in the nixOnDroidConfiguration
call:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nix-on-droid }: {
nixOnDroidConfigurations.deviceName = nix-on-droid.lib.nixOnDroidConfiguration {
modules = [ ./nix-on-droid.nix ];
};
};
}
Options