14 lines
338 B
Plaintext
14 lines
338 B
Plaintext
import "nixMain/base.rhai" as nixMainBase;
|
|
import "nixLap/base.rhai" as nixLapBase;
|
|
import "shared_config.rhai" as sharedConfig;
|
|
|
|
export let data = #{
|
|
for_vcs: LOCAL,
|
|
};
|
|
|
|
export let eggs = switch SYSTEM.hostname {
|
|
"nixMain" => nixMainBase::base_config,
|
|
"nixLap" => nixLapBase::base_config,
|
|
_ => #{}
|
|
} + sharedConfig::base
|