This repository has been archived on 2024-09-22. You can view files and clone it, but cannot push or open issues or pull requests.
nix-on-droid/flake.nix

22 lines
518 B
Nix
Raw Normal View History

2024-07-23 17:03:15 +02:00
{
description = "Basic example of Nix-on-Droid system config.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nix-on-droid }: {
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
pkgs = import nixpkgs { system = "aarch64-linux"; };
modules = [ ./nix-on-droid.nix ];
};
};
}