diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-08T19·14+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-08T19·14+0000 |
commit | 5fd094d39cd78e987f943c7ff8f9ecd2a7303650 (patch) | |
tree | 96a9effe74b274d3a7c6f546d68fd271ad466e1b /nixos/socrates/configuration.nix | |
parent | 9b49731c02ec606049894e276b3651ea721cd429 (diff) |
Replace ~ with /home/wpcarro
Nix runs the `rebuild` command as root, so ~ resolves to /root, which is not what I want.
Diffstat (limited to 'nixos/socrates/configuration.nix')
-rw-r--r-- | nixos/socrates/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/socrates/configuration.nix b/nixos/socrates/configuration.nix index 2cf23e48e67e..a1fbe0789803 100644 --- a/nixos/socrates/configuration.nix +++ b/nixos/socrates/configuration.nix @@ -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; |