17 lines
620 B
Nix
17 lines
620 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# These two are required options
|
|
device = "FP4";
|
|
flavor = "lineageos";
|
|
|
|
# buildDateTime is set by default by the flavor, and is updated when those flavors have new releases.
|
|
# If you make new changes to your build that you want to be pushed by the OTA updater, you should set this yourself.
|
|
# buildDateTime = 1584398664; # Use `date "+%s"` to get the current time
|
|
|
|
# signing.enable = true;
|
|
# signing.keyStorePath = "/var/secrets/android-keys"; # A _string_ of the path for the key store.
|
|
|
|
# Build with ccache
|
|
# ccache.enable = true;
|
|
}
|