atuin: Move from services namespace to web-services

This commit is contained in:
SebastianStork 2026-02-27 23:42:14 +01:00
parent 371fc98406
commit 1fc79bee5c
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
2 changed files with 4 additions and 4 deletions

View file

@ -29,14 +29,14 @@
gui.domain = "syncthing.${privateDomain}";
doBackups = true;
};
};
web-services = {
atuin = {
enable = true;
domain = "atuin.${privateDomain}";
};
};
web-services = {
filebrowser = {
enable = true;
domain = "files.${privateDomain}";

View file

@ -1,10 +1,10 @@
{ config, lib, ... }:
let
cfg = config.custom.services.atuin;
cfg = config.custom.web-services.atuin;
dataDir = "/var/lib/atuin";
in
{
options.custom.services.atuin = {
options.custom.web-services.atuin = {
enable = lib.mkEnableOption "";
domain = lib.mkOption {
type = lib.types.nonEmptyStr;