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.
20 lines
453 B
Nix
20 lines
453 B
Nix
{
|
|
description = "Basic example of Nix-on-Droid system config.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05";
|
|
|
|
nix-on-droid = {
|
|
url = "github:t184256/nix-on-droid/release-22.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nix-on-droid }: {
|
|
|
|
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
|
modules = [ ./nix-on-droid.nix ];
|
|
};
|
|
|
|
};
|
|
}
|