-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathconfigs.nix
More file actions
53 lines (49 loc) · 1.98 KB
/
Copy pathconfigs.nix
File metadata and controls
53 lines (49 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ lib }:
lib.listToAttrs (
builtins.map (c: lib.nameValuePair "${c.flavor}-${c.device}" c) [
# { device="x86_64"; flavor="vanilla"; }
# { device="arm64"; flavor="vanilla"; }
# { device="marlin"; flavor="vanilla"; androidVersion=10; } # Out-of-date
# { device="sailfish"; flavor="vanilla"; androidVersion=10; } # Out-of-date
# { device="taimen"; flavor="vanilla"; androidVersion=11; } # Out-of-date
# { device="walleye"; flavor="vanilla"; androidVersion=11; } # Out-of-date
# { device="crosshatch"; flavor="vanilla"; }
# { device="blueline"; flavor="vanilla"; }
# { device="bonito"; flavor="vanilla"; }
# { device="sargo"; flavor="vanilla"; }
# { device="coral"; flavor="vanilla"; }
# { device="flame"; flavor="vanilla"; }
# { device="sunfish"; flavor="vanilla"; }
# { device="bramble"; flavor="vanilla"; }
# { device="redfin"; flavor="vanilla"; }
# { device="barbet"; flavor="vanilla"; }
# { device="raven"; flavor="vanilla"; }
# { device="oriole"; flavor="vanilla"; }
# { device="x86_64"; flavor="grapheneos"; }
# { device="arm64"; flavor="grapheneos"; }
# { device="crosshatch"; flavor="grapheneos"; }
# { device="blueline"; flavor="grapheneos"; }
# { device="bonito"; flavor="grapheneos"; }
# { device="sargo"; flavor="grapheneos"; }
# { device="coral"; flavor="grapheneos"; }
# { device="flame"; flavor="grapheneos"; }
# { device="sunfish"; flavor="grapheneos"; }
# { device="bramble"; flavor="grapheneos"; }
# { device="redfin"; flavor="grapheneos"; }
# { device="barbet"; flavor="grapheneos"; }
{
device = "marlin";
flavor = "lineageos";
}
{
device = "pioneer";
flavor = "lineageos";
}
{
device = "FP4";
flavor = "lineageos";
}
# { device="x86_64"; flavor="anbox"; }
# { device="arm64"; flavor="anbox"; }
]
)