modules: add container host set
This commit is contained in:
parent
f4f360d772
commit
e5091f23fa
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
inputs:
|
inputs:
|
||||||
with builtins;
|
with builtins;
|
||||||
let
|
let
|
||||||
aspects = {
|
aspects = {
|
||||||
|
@ -28,7 +28,7 @@ let
|
||||||
in rec {
|
in rec {
|
||||||
modules = aspects;
|
modules = aspects;
|
||||||
sets = with modules; rec {
|
sets = with modules; rec {
|
||||||
base = [
|
base = [
|
||||||
autopatch
|
autopatch
|
||||||
enterprise
|
enterprise
|
||||||
maintenance
|
maintenance
|
||||||
|
@ -50,6 +50,10 @@ in rec {
|
||||||
system-recovery
|
system-recovery
|
||||||
] ++ base ++ networking;
|
] ++ base ++ networking;
|
||||||
|
|
||||||
|
container = [
|
||||||
|
nix-config-server
|
||||||
|
] ++ base ++ networking;
|
||||||
|
|
||||||
backbone = server ++ [
|
backbone = server ++ [
|
||||||
sss
|
sss
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue