mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
23 lines
363 B
Nix
23 lines
363 B
Nix
{ lib, tree, ... }: with lib; let
|
|
profiles = tree.prev;
|
|
appendedProfiles = with profiles; {
|
|
aarch64 = {
|
|
imports = [
|
|
aarch64
|
|
];
|
|
};
|
|
armv7l = {
|
|
imports = [
|
|
arm-common
|
|
armv7
|
|
];
|
|
};
|
|
armv6l = {
|
|
imports = [
|
|
arm-common
|
|
armv6
|
|
];
|
|
};
|
|
};
|
|
in
|
|
profiles // appendedProfiles
|