aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/at/atuin-sync/module.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/at/atuin-sync/module.nix')
-rw-r--r--modules/by-name/at/atuin-sync/module.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/by-name/at/atuin-sync/module.nix b/modules/by-name/at/atuin-sync/module.nix
deleted file mode 100644
index 4295697..0000000
--- a/modules/by-name/at/atuin-sync/module.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.vhack.atuin-sync;
-in {
- options.vhack.atuin-sync = {
- enable = lib.mkEnableOption "atuin (turtle) sync server";
-
- fqdn = lib.mkOption {
- description = "The fully qualified domain name of this instance.";
- type = lib.types.str;
- example = "atuin-sync.atuin.sh";
- };
- };
-
- config = lib.mkIf cfg.enable {
- vhack.nginx.enable = true;
-
- vhack.anubis.instances."${cfg.fqdn}".target = "http://127.0.0.1:${toString config.services.turtle.port}";
-
- services = {
- turtle = {
- enable = true;
- host = "127.0.0.1";
-
- database.createLocally = true;
- };
- };
- };
-}