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

20 lines
456 B
Nix
Raw Normal View History

2024-07-23 17:03:15 +02:00
{
inputs = {
2024-09-03 11:40:19 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-07-23 17:03:15 +02:00
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 ];
};
};
}