mirror of
https://github.com/oqyude/nixos.git
synced 2026-08-08 23:53:11 +03:00
10 lines
337 B
Nix
10 lines
337 B
Nix
{ inputs, ... }@flakeContext:
|
|
{
|
|
nixOnDroidConfigurations = {
|
|
epral = import ./epral.nix flakeContext; # epral (Android via nix-on-droid)
|
|
# Alias so a plain `nix-on-droid switch` from a local clone
|
|
# (~/.config/nix-on-droid) picks up the device config without `#epral`.
|
|
default = import ./epral.nix flakeContext;
|
|
};
|
|
}
|