mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Using ./home.nix and ./nixos.nix as entrypoints for hosts. Using hardware profiles. Using new entrypoints (profiles/base/profiles.nix + profiles/base/home.nix). New modules (for DNS handling, for themeing, ...). Split up deploy-tf.nix into several modules. Renamed common profile to base profile.
30 lines
448 B
Nix
30 lines
448 B
Nix
rec {
|
|
ms-7b86-base = ./ms-7b86;
|
|
v330-14arr-base = ./v330-14arr;
|
|
rm-310-base = ./rm-310;
|
|
hcloud-imperative = ./hcloud-imperative;
|
|
ryzen = ./ryzen;
|
|
intel = ./intel;
|
|
amdgpu = ./amdgpu;
|
|
|
|
ms-7b86 = {
|
|
imports = [
|
|
ms-7b86-base
|
|
ryzen
|
|
amdgpu
|
|
];
|
|
};
|
|
v330-14arr = {
|
|
imports = [
|
|
v330-14arr-base
|
|
ryzen
|
|
amdgpu
|
|
];
|
|
};
|
|
rm-310 = {
|
|
imports = [
|
|
rm-310-base
|
|
intel
|
|
];
|
|
};
|
|
}
|