From 86305b65b48865f7a46dd13e41c504e9c79f4fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Fri, 24 Oct 2025 11:49:43 -0600 Subject: [PATCH] =?UTF-8?q?refactor(anki):=20anki=20=E2=86=92=20anki-sync-?= =?UTF-8?q?server?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/deertopia/configuration.nix | 2 +- modules/nixos/deertopia/{anki.nix => anki-sync-server.nix} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename modules/nixos/deertopia/{anki.nix => anki-sync-server.nix} (89%) diff --git a/hosts/deertopia/configuration.nix b/hosts/deertopia/configuration.nix index d541c0f..4607890 100644 --- a/hosts/deertopia/configuration.nix +++ b/hosts/deertopia/configuration.nix @@ -62,7 +62,7 @@ # mullvad.enable = true; # umurmur.enable = true; murmur.enable = true; - anki.enable = true; + anki-sync-server.enable = true; servarr = { enable = true; prowlarr.enable = true; diff --git a/modules/nixos/deertopia/anki.nix b/modules/nixos/deertopia/anki-sync-server.nix similarity index 89% rename from modules/nixos/deertopia/anki.nix rename to modules/nixos/deertopia/anki-sync-server.nix index 92801d3..faa7520 100644 --- a/modules/nixos/deertopia/anki.nix +++ b/modules/nixos/deertopia/anki-sync-server.nix @@ -1,8 +1,8 @@ { config, lib, pkgs, ... }: -let cfg = config.sydnix.deertopia.anki; +let cfg = config.sydnix.deertopia.anki-sync-server; in { - options.sydnix.deertopia.anki = { + options.sydnix.deertopia.anki-sync-server = { enable = lib.mkEnableOption "Anki"; };