summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-12 01:19:14 -0500
committerseth <[email protected]>2023-11-12 01:19:14 -0500
commitce668038ac8f1a39ea68ab476b13591b215a5f29 (patch)
treeb4d63bf17cc6176adfd80d5f8ee40378ce29078b /systems
parent89f11c710280eff277f82162e8c0d8627bf7eeb6 (diff)
flake/atlas: remove guzzle_api
Diffstat (limited to 'systems')
-rw-r--r--systems/atlas/default.nix10
-rw-r--r--systems/default.nix6
2 files changed, 1 insertions, 15 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix
index 3048534..93b2081 100644
--- a/systems/atlas/default.nix
+++ b/systems/atlas/default.nix
@@ -29,16 +29,6 @@
};
services = {
- guzzle-api = {
- enable = true;
- domain = "api.${config.networking.domain}";
- nginx = {
- enableACME = true;
- acmeRoot = null;
- addSSL = true;
- };
- };
-
resolved.enable = false;
};
diff --git a/systems/default.nix b/systems/default.nix
index eb3522b..40073c5 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -59,11 +59,7 @@ in {
atlas = {
builder = inputs.nixpkgs-stable.lib.nixosSystem;
system = "aarch64-linux";
- modules =
- [
- inputs.guzzle_api.nixosModules.default
- ]
- ++ server;
+ modules = server;
};
};