mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
20 lines
456 B
Nix
20 lines
456 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.deviceName = nix-on-droid.lib.nixOnDroidConfiguration {
|
|
modules = [ ./nix-on-droid.nix ];
|
|
};
|
|
|
|
};
|
|
}
|