Replace ~ with /home/wpcarro

Nix runs the `rebuild` command as root, so ~ resolves to /root, which is not
what I want.
This commit is contained in:
William Carroll 2020-03-08 19:14:08 +00:00
parent 9b49731c02
commit 5fd094d39c

View file

@ -149,7 +149,7 @@ in {
enableACME = true;
# TODO(wpcarro): Prefer creating a default.nix in //learn and using
# briefcase.learn as root.
root = ~/briefcase/learn/static;
root = /home/wpcarro/briefcase/learn/static;
};
"blog.wpcarro.dev" = {
addSSL = true;