mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
Whenever Nix-on-Droid references the project or application it should be upper-cased. When nix-on-droid is referencing the CLI-tool or is used as some ID, it should be lower-cased.
17 lines
410 B
Nix
17 lines
410 B
Nix
{
|
|
description = "Nix-on-Droid configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/release-22.05";
|
|
nix-on-droid.url = "<<FLAKE_URL>>";
|
|
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = { nix-on-droid, ... }: {
|
|
nixOnDroidConfigurations = {
|
|
device = nix-on-droid.lib.nixOnDroidConfiguration {
|
|
modules = [ ./nix-on-droid.nix ];
|
|
};
|
|
};
|
|
};
|
|
}
|