about summary refs log tree commit diff
path: root/users/sterni/machines/ingeborg/quassel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/sterni/machines/ingeborg/quassel.nix')
-rw-r--r--users/sterni/machines/ingeborg/quassel.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/users/sterni/machines/ingeborg/quassel.nix b/users/sterni/machines/ingeborg/quassel.nix
new file mode 100644
index 0000000000..cd8dacc917
--- /dev/null
+++ b/users/sterni/machines/ingeborg/quassel.nix
@@ -0,0 +1,18 @@
+{ depot, ... }:
+
+{
+  imports = [
+    (depot.path.origSrc + "/ops/modules/quassel.nix")
+  ];
+
+  config = {
+    services.depot.quassel = {
+      enable = true;
+      acmeHost = "sterni.lv";
+      bindAddresses = [
+        "0.0.0.0"
+        "::"
+      ];
+    };
+  };
+}