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