mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
26 lines
414 B
Nix
26 lines
414 B
Nix
rec {
|
|
common = ./common.nix;
|
|
ubuntu-base = ./ubuntu.nix;
|
|
oracle-base = ./oracle.nix;
|
|
|
|
ubuntu = {
|
|
deploy.profile.hardware.oracle = {
|
|
common = true;
|
|
ubuntu = true;
|
|
};
|
|
imports = [
|
|
common
|
|
ubuntu-base
|
|
];
|
|
};
|
|
oracle = {
|
|
deploy.profile.hardware.oracle = {
|
|
common = true;
|
|
oracle = true;
|
|
};
|
|
imports = [
|
|
common
|
|
oracle-base
|
|
];
|
|
};
|
|
}
|