pastila: fix srv: do not import data into the store
This commit is contained in:
parent
b08fe0485e
commit
d64c6f9eb6
1 changed files with 4 additions and 2 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue