mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
37 lines
565 B
Nix
37 lines
565 B
Nix
rec {
|
|
common = ./armvcommon.nix;
|
|
armv7-base = ./armv7.nix;
|
|
armv6-base = ./armv6.nix;
|
|
aarch64-base = ./aarch64.nix;
|
|
|
|
|
|
aarch64 = {
|
|
deploy.profile.cross = {
|
|
enable = true;
|
|
aarch64 = true;
|
|
};
|
|
imports = [
|
|
aarch64-base
|
|
];
|
|
};
|
|
armv7l = {
|
|
deploy.profile.cross = {
|
|
enable = true;
|
|
armv7l = true;
|
|
};
|
|
imports = [
|
|
common
|
|
armv7-base
|
|
];
|
|
};
|
|
armv6l = {
|
|
deploy.profile.cross = {
|
|
enable = true;
|
|
armv6l = true;
|
|
};
|
|
imports = [
|
|
common
|
|
armv6-base
|
|
];
|
|
};
|
|
}
|