mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
44 lines
682 B
Nix
44 lines
682 B
Nix
{ lib, tree, ... }: with lib; let
|
|
profiles = tree.prev;
|
|
appendedProfiles = with profiles; {
|
|
ms-7b86 = {
|
|
imports = [
|
|
ms-7b86
|
|
ryzen
|
|
amdgpu
|
|
];
|
|
};
|
|
rm-310 = {
|
|
imports = [
|
|
rm-310
|
|
intel
|
|
];
|
|
};
|
|
v330-14arr = {
|
|
imports = [
|
|
v330-14arr
|
|
ryzen
|
|
amdgpu
|
|
laptop
|
|
networkmanager
|
|
];
|
|
};
|
|
x270 = {
|
|
imports = [
|
|
x270
|
|
intel
|
|
laptop
|
|
networkmanager
|
|
intel-gpu
|
|
];
|
|
};
|
|
eeepc-1015pem = {
|
|
imports = [
|
|
eeepc-1015pem
|
|
intel
|
|
laptop
|
|
];
|
|
};
|
|
};
|
|
in
|
|
profiles // appendedProfiles
|