17 lines
555 B
Nix
17 lines
555 B
Nix
{
|
|
merge,
|
|
configs,
|
|
...
|
|
}: {
|
|
#capsaicin is a custom-built PC
|
|
capsaicin = merge configs.universal configs.personal;
|
|
#menthol is a Lenovo Thinkpad T460s
|
|
menthol = merge configs.universal configs.personal;
|
|
#glucose and fructose are Lenovo Thinkcentres m92p
|
|
glucose = merge (merge configs.universal configs.sucrose) (
|
|
merge configs.cluster configs.cluster-testing
|
|
);
|
|
fructose = merge configs.universal (merge configs.sucrose configs.cluster);
|
|
#aspartame is a VPS from Contabo
|
|
aspartame = merge configs.universal configs.cluster;
|
|
}
|