From e12f287be7a829ab1e7795fed3896b3eed986907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey=20=28they/them=29?= Date: Mon, 9 Mar 2026 22:17:21 -0700 Subject: [PATCH 1/2] feat(glyph): add atuin sync server --- hosts/glyph/services/atuin.nix | 8 ++++++++ hosts/glyph/services/default.nix | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 hosts/glyph/services/atuin.nix diff --git a/hosts/glyph/services/atuin.nix b/hosts/glyph/services/atuin.nix new file mode 100644 index 0000000..429941a --- /dev/null +++ b/hosts/glyph/services/atuin.nix @@ -0,0 +1,8 @@ +{_}: { + services.atuin = { + enable = true; + host = "0.0.0.0"; + port = 8889; + openRegistration = true; + }; +} diff --git a/hosts/glyph/services/default.nix b/hosts/glyph/services/default.nix index 4dc145b..297e2b9 100644 --- a/hosts/glyph/services/default.nix +++ b/hosts/glyph/services/default.nix @@ -4,6 +4,7 @@ ... }: { imports = [ + ./atuin.nix ./avahi.nix ./dns.nix ./filebrowser.nix @@ -84,6 +85,7 @@ rc.backup = { enable = true; paths = [ + "/var/lib/atuin" "/var/lib/basic-memory" "/var/lib/open-webui" "/var/lib/roon-server/backup" From fd3b739acf32d03e30c70efd1c8caba49fb2e4a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey=20=28they/them=29?= Date: Mon, 9 Mar 2026 22:19:01 -0700 Subject: [PATCH 2/2] fix(glyph): use standard module args pattern in atuin service --- hosts/glyph/services/atuin.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/glyph/services/atuin.nix b/hosts/glyph/services/atuin.nix index 429941a..5e3d604 100644 --- a/hosts/glyph/services/atuin.nix +++ b/hosts/glyph/services/atuin.nix @@ -1,4 +1,8 @@ -{_}: { +{ + config, + pkgs, + ... +}: { services.atuin = { enable = true; host = "0.0.0.0";