pastila: fix srv: do not import data into the store

This commit is contained in:
root 2024-06-16 11:04:59 +02:00
parent b08fe0485e
commit d64c6f9eb6

View file

@ -1,8 +1,8 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
up_dir = /srv/up; up_dir = "/srv/up";
isomorphisme_dir = /srv/isomorphis.me; isomorphisme_dir = "/srv/isomorphis.me";
in in
{ {
services.nginx.enable = true; services.nginx.enable = true;
@ -16,6 +16,8 @@ in
group = "nginx"; group = "nginx";
# Unsure why this is broken, but couldn't make things work without # Unsure why this is broken, but couldn't make things work without
# creating the directory by hand. # creating the directory by hand.
# TODO: this might have been because I used up_dir = /srv/up before;
# maybe this would work now?
# createHome = true; # createHome = true;
# homeMode = "750"; # homeMode = "750";
}; };