Nix-on-Droid manual Preface 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 options
Usage 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-23.11"; nix-on-droid = { url = "github:nix-community/nix-on-droid/release-23.11"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, nix-on-droid }: { nixOnDroidConfigurations.deviceName = nix-on-droid.lib.nixOnDroidConfiguration { modules = [ ./nix-on-droid.nix ]; }; }; }
Options