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:
parent
9b49731c02
commit
5fd094d39c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue