From 629531bdefad41e8839fa818e68bcf9a083466f8 Mon Sep 17 00:00:00 2001 From: Vika Date: Sat, 13 Aug 2022 22:33:38 +0300 Subject: NixOS module fixes and temporary fixes to the legacy configuration --- distributed-test.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'distributed-test.nix') diff --git a/distributed-test.nix b/distributed-test.nix index 39a080b..11c2dba 100644 --- a/distributed-test.nix +++ b/distributed-test.nix @@ -7,9 +7,8 @@ kittybox: services.kittybox = { enable = true; - tokenEndpoint = "https://example.com"; - authorizationEndpoint = "https://example.com"; - backendUri = "file:///srv/kittybox"; + backendUri = "file:///srv/kittybox/data"; + blobstoreUri = "file:///srv/kittybox/media"; }; environment.systemPackages = with pkgs; [ xh ]; @@ -51,7 +50,9 @@ in { /srv 192.168.1.0/255.255.255.0(rw,no_root_squash,no_subtree_check,fsid=0) ''; systemd.tmpfiles.rules = [ - "d /srv/kittybox 1750 kittybox root -" + "d /srv/kittybox 1750 kittybox root -" + "d /srv/kittybox/data 1750 kittybox root -" + "d /srv/kittybox/media 1750 kittybox root -" ]; }; longiflorum = { config, pkgs, lib, ... }: { -- cgit 1.4.1