18 lines
313 B
Nix
18 lines
313 B
Nix
{ ... }:
|
|
{
|
|
flavor = "grapheneos";
|
|
device = "lynx";
|
|
|
|
grapheneos = {
|
|
channel = "stable";
|
|
};
|
|
|
|
apps.fdroid.enable = true;
|
|
|
|
# Enables ccache for the build process. Remember to add /var/cache/ccache as
|
|
# an additional sandbox path to your Nix config.
|
|
ccache.enable = false;
|
|
|
|
stateVersion = "3";
|
|
}
|