summaryrefslogtreecommitdiff
path: root/systems/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-13 19:03:14 -0500
committerseth <[email protected]>2023-11-13 19:03:14 -0500
commite1387ae4821a95efabb356581f2234ef4aab42cb (patch)
tree32b5eb2932da4027a157d4e9d9fa158c0e80dddf /systems/default.nix
parentbdeb3438b635dce453310466a3ade6317fb0e0f7 (diff)
atlas: start hosting teawiebot
Diffstat (limited to 'systems/default.nix')
-rw-r--r--systems/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/systems/default.nix b/systems/default.nix
index 40073c5..023dc59 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -59,7 +59,11 @@ in {
atlas = {
builder = inputs.nixpkgs-stable.lib.nixosSystem;
system = "aarch64-linux";
- modules = server;
+ modules =
+ [
+ inputs.teawiebot.nixosModules.default
+ ]
+ ++ server;
};
};