summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-03 15:11:52 +0200
committerSoispha <soispha@vhack.eu>2023-07-03 15:13:00 +0200
commit61846c5f3a935b3348de04e082cbcf3f018b61fb (patch)
tree1d041809d1cd4dc20aa87c898dbd9db0ee358216 /system/services
parentRefactor(system/services/mail): Move mail to services as it's one (diff)
downloadnixos-server-61846c5f3a935b3348de04e082cbcf3f018b61fb.tar.gz
nixos-server-61846c5f3a935b3348de04e082cbcf3f018b61fb.zip
Fix(system): Import everything
Diffstat (limited to '')
-rw-r--r--system/services/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 2e2b751..13e1c0a 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -1,12 +1,13 @@
 {...}: {
   imports = [
+    ./fail2ban
     ./keycloak
+    ./mail
     ./minecraft
     ./nginx
     ./nix
-    ./opensshd
+    ./nix-sync
+    ./openssh
     ./rust-motd
-    ./fail2ban
-    ./git-sync
   ];
 }