infrastructure/config/profiles/hardware/default.nix
kat witch 2a5ec2e0b4
Refactors for usability
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.
2021-08-05 03:21:21 +01:00

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
];
};
}